JavaScript
listObj.filterListClientSide Method
Syntax
listObj.filterListClientSide(searchFor);
Arguments
- searchForstring
The value to search for in the List.
Description
Performs a client-side search on the data in the List and displays all rows that have the searchFor value in any column in the List.
Example
var listObj = {dialog.object}.getControl('list1');
if (listObj) {
listObj.filterListClientSide('Smith');
}If you want more control over which columns are searched, use the .setFilter() method.
See Also