Hello I am using Slick Grid with dataview to render , groupby and filter rows.
I am looking for a solution where I can pick an Value like "foo" and highlight reach row with it.
H* is a highlighter row
header1 header2
------------------------
H foo test
other row
here andthere
H foo appeared
again test
H foo last
Using a compare algorithm I can highlight those rows using Grid.setCellCssStyles
But if I happen to sort by Header1
header1 header2
------------------------
H foo test
foo appeared
foo last
H other row
here andthere
H again test
As you can see the rows 1,4 and 6 stay highlighter but are incorrect.
Any dynamic solutions?