I use Telerik UI's DataGrid control for .Net Maui. As you see VIPStatus column holds values such as "No VIP", "Partner", "Senior Manager" etc. but the filter offers me the values
0, 1, 2, 3, 4, 5
0, 1, 2, 3, 4, 5
instead. This is because
VIPStatus
VIPStatus
is of type
int
int
on my model, I'm using a ValueConverter to convert to "No VIP" and stuff. What can I do about it? I want the values from my cells to be on the filter, just like it is for the other columns