finds cell in treegrid by value
value | string | search string |
c_ind | number | index of the column to search in (optional, if not specified, search everywhere) |
first | boolean | find only the first occurence (optional, false by default) |
compare | boolean | find only exact matches of the entered value, false by default |
Available only in PRO Edition
//search "alf" value in all grid cells
var searchResult=myTreeGrid.findCell("alf");
//search "alf" value at the second column, find only the first occurence
var searchResult=myTreeGrid.findCell("alf",1,true);
Back to top