Commit 66328feb authored by joshua-gould's avatar joshua-gould

added search and autocomplete methods

parent 216d55d5
...@@ -180,6 +180,12 @@ morpheus.CheckBoxList = function(options) { ...@@ -180,6 +180,12 @@ morpheus.CheckBoxList = function(options) {
}; };
morpheus.CheckBoxList.prototype = { morpheus.CheckBoxList.prototype = {
searchWithPredicates : function(predicates) {
this.table.searchWithPredicates(predicates);
},
autocomplete : function(tokens, cb) {
this.table.autocomplete(tokens, cb);
},
setHeight : function(height) { setHeight : function(height) {
this.table.setHeight(height); this.table.setHeight(height);
}, },
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment