-
Notifications
You must be signed in to change notification settings - Fork 55
Global table search and highlight
Robert Hjalmers edited this page Apr 18, 2017
·
1 revision
Search and filter table using global search. Separate multiple search terms with a space [ ] or match whole phrase by putting them within quotes ["].
Define custom search value for individual columns by declaring a custom search function in the fields array, ie. you might want the search to match one value but display/render another in the table ex. search for 100000 and display 1 000 000,00 in the table.
Turn of search for individual columns by setting column setting property search
to false
.
Call generic tables search function and pass your search term(s)
myTable.gtSearch(searchString);
Usage (when lazy loading):
Return search terms in your server response.
this.configObject.info:GtInformation = {
pageCurrent: 1,
pageNext: 2,
pagePrevious: null,
pageTotal: 10,
recordLength: 10,
recordsAll: 100,
recordsAfterFilter: 100,
recordsAfterSearch: 13,
searchTerms: "foo bar"
}
see demo for full implementation and examples