Reputation: 471
Using Infragistics.win.UltraGrid, I'm setting dataRowError for certain rows where I want the user to review. Everything looks good, I get a little red icon in the selector column with the proper tooltip; however, I need my user to be able to filter that column to only see the rows with errors.
Is this possible?
Thanks. Mike
Upvotes: 1
Views: 576
Reputation: 216302
You can change the FilterOperandDropDownItems from its default value to this one
grid.DisplayLayout.Override.FilterOperandDropDownItems = FilterOperandDropDownItems.All;
After this, your users will be able to see an 'Errors' option (as well a 'Non Errors' one) in the filter dropdown
There is a tutorial on the Infragistics site about this.
Upvotes: 2