Good day,
I have a GridGroupingControl that uses a separate textbox as a filter box on a specific column. Any text types into that textbox will filter the rows according to matching text in a certain column.
Usually in the grids where I implement this the column is all upper case and the textbox is set to change the text to uppercase so I do not have any issues.
However I have run across an issue in one table where the column in question is populated with sentences where both upper and lower case text is present.
In testing this is discovered that the filtering I use is case sensitive.
Considering I use the code below how can i make my filtering case insensitive?
e.g. I have row containing the text "Test data: James"
If I type the text "ja" into the textbox txtFilterSymbol, I'd like the above row to be shown in the filter.
Regards,
James