This question is locked. New answers and comments are not allowed.
I have a GridViewComboBoxColumn that has something like the following
Value Text
1 Item 1
2 Item 2
3 Item 3
4 Item 4
In the Grid view/edit templates it shows "Item 1", "Item 2", etc with the values storing correctly in the database. However, for the filter it shows "1", "2", "3", "4", etc.
1) How do I get the filter to show the Text and not the Values??
2) I'm adding a ColumnFilterDescriptor for that column. Currently, I'm doing something like:
Is there anything I need to do differently (once I implement what you suggest for question 1) in order to set the default filter? Will I still use the Value, or will I begin using the Text?
Thanks,
Joshua
Value Text
1 Item 1
2 Item 2
3 Item 3
4 Item 4
In the Grid view/edit templates it shows "Item 1", "Item 2", etc with the values storing correctly in the database. However, for the filter it shows "1", "2", "3", "4", etc.
1) How do I get the filter to show the Text and not the Values??
2) I'm adding a ColumnFilterDescriptor for that column. Currently, I'm doing something like:
columnDescriptor.DistinctFilter.DistinctValues.Add(1);
Thanks,
Joshua