I have a question about filtering on the Kendo Grid. I have looked all over the API docs, these forums, and SO and haven't come up with anything, so I figured I'd ask here.
Is there a straightforward way to set the filtering type to a different type other than the underlying type of the bound column?
E.g.
I have a column called "ActivityID" bound to an int property in my ViewModel. In the ClientTemplate of the bound column, I'm showing a property from my ViewModel called "ActivityNumber", which is a string. When the user hits the filter drop down in the column header, I want them to be able to filter based on the string operators I have set up in the grid, not the number operators.
Does anyone know if there a straightforward way in the Kendo().Grid() configuration to achieve this? I'm sure there's a way to do it on the client side, but I was hoping that I was missing something really obvious before going down that path.
Is there a straightforward way to set the filtering type to a different type other than the underlying type of the bound column?
E.g.
I have a column called "ActivityID" bound to an int property in my ViewModel. In the ClientTemplate of the bound column, I'm showing a property from my ViewModel called "ActivityNumber", which is a string. When the user hits the filter drop down in the column header, I want them to be able to filter based on the string operators I have set up in the grid, not the number operators.
Does anyone know if there a straightforward way in the Kendo().Grid() configuration to achieve this? I'm sure there's a way to do it on the client side, but I was hoping that I was missing something really obvious before going down that path.