If not possible already i would like to be able to change the wildcard-character for filtering individual columns in TTMSFNCDataGrid via the filter in the column header.
Basically until now Filtering works with * as wildcard.
So for example for 'Str*' would return all cells that start with 'Str'.
Would it be possible to replace the wildcard with another character such as '%'?
So for example for 'Str%' would return all cells that start with 'Str'.
Can you please explain a bit more on why you need to have '%' as a character for the wildcard? Right now it's not possible, but it would require optional changes to the filter engine which is also used in other FNC components.
in our framework we are using the %-Character in all filter functions. For example in the DevExpress-Grid. Using the * would be a bit of a break in the framework.
I think the % is pretty common as a wildcard-character because it´s the default in SQL queries. I guess the * is coming more from the regex-syntax.