I'm using Infragistics 24.1.I have a XamDataGrid with MultiSelectExcelStyle filters. I have set the NullText on XamTextEditors to display "None" when the value in my datasource is null or DBNull.Value. I want "None" to display in the list of check values instead of "(Blanks)". How do I accomplish this?
That's great, thanks!
Hello Josh,
It is not currently possible to add new filters to the MultiSelectExcel style filter, but the (Blanks) entry comes from a resource string, so overriding it will allow you to see your “None” entry. You can use the following code to override that resource string:
Infragistics.Windows.Resources.Customizer.SetCustomizedString("SpecialFilterOperand_Blanks_DisplayContent", "None");
Please let me know if you have any other questions or concerns on this matter.