Hello,
My question: is it possible to filter with an object type, and how?
I'm working on a bug tracking system, and I use a RadGrid to display the bugs that have been reported. The grid's data source is a List<Bug>. Originally, the Bug class had only string properties, so filtering was easy, and it worked pretty well. Unfortunately, I now need to use a Priority class instead of string for the bug's priority. So I created that class and overrode the ToString() to display the priority's name. It works well for display, but filtering does not work. I tried setting the column's type to System.String, but it did nothing.
My question: is it possible to filter with an object type, and how?
Thanks in advance.