I have a possible issue with grid and tree searches and filters. I certain cases where there is a tooltip involved the filter and search will check everything including the tooltip. Is there anyway that I can have the search just look for the keywords within the value of the cell rather than all of the cell
In another attempt to get round the issue I started to use onFilterStart which seemed to work well at the beginning but I discovered it was only showing some of the results. when outputing the regex results the values where correct but it was not displaying them within the grid
if (values[0] != “”){
mask = new RegExp("^"+values[0],“gi”);
values[0]=function(check){ return mask.test(check) }
}
return true;
all this regex does is tests the first part of the string against the inputted value