filter
filters the component
function filter( // a template of filtered value or function text: template|function, // the filtering mask value?: string, // if set to "true", each next filtering criteria will be applied to the already filtered list preserve?: boolean): voidExample
Section titled “Example”// filters the 'text' field with 'abc'// using a templategrid.filter('#text#',"abc")
// using a functiongrid.filter(function(obj){ return obj.text.toString().indexOf("abc") != -1;});also check the next samples:
See also
Section titled “See also”Articles
API