Hey there,
I am using the SFDatagrid and add the search box to the toolbar.
after entering something to the box the grid will show rows with matching field contents AND rows where are empty strings.
For example:
Data:
Item 1 {Name="Item1",Description="desciption example text"}
Item 2 {Name="Item2",Description=""}
Item 3 {Name="Item2",Description="another description"}
these three rows are shown if the searchbox is empty.
If I enter "another"
Them Item 2 and Item 3 are shown.
I think this is because of the empty Description of Item2.
If I disable searching for the Description column, then only Item3 is shown.
How can I prevent empty strings to match every search entry?
Best
Alex