filters the component
| text |
// filters all fields with "abc" value in the "text" property
// using a template
list.filter("#text#","abc")
// using a function
list.filter(function(obj){
return obj.text.toString().indexOf("abc") != -1;
});
// unfilters the dataset
list.filter();
When called without parameters, the method unfilters the dataset.