I have a devexpress gridview within my asp.net page which has a filter row. The built-in feature needs me to filter the from the first letters not the letters in between.
So "Sa" would find "Samuel" but not "Uncle Sam". To search using for the "Uncle Sam", I need to use %sa%. My clients don't want that.
I found a solution that requires me to use Settings-AutoFilterCondition="Contains" for every field in the gridview. I have more than 20s gridview in the asp.net program.
Is there any alternatives to set the default for all gridview at once?
Thanks