XtraGridView Custom Filter on AutoFilterRow
.net, c#, devexpress, winforms
Solution
You need to change the OptionsColumnFilter.AutoFilterCondition option to achieve the desired result.
Problem
Hy , I have an XtraGrid with AutoFilterRow the default Filter is : Starts with([columnName], 'mytext') but i want to change this to : [columnName] like '%mytext%' without creating a Custom Filter i just want to open the grid , write inside FilterRow 'mytext' and Filter LIKE should by apply to my column a solution is to catch when the Filter is changed , to create the string and ``` gridView1.Columns["myCol"].FilterInfo = mystring; ``` but i do not know how to catch the inserted text thanks in advance