Hello,
I am using Kendo MVC Wrappers and ran into a problem.
I have bound a column to the grid using:
And though Amount is of type decimal? the grid is showing on it's column the filter for string type(the one with the operators: Contains, Starts with,Ends with...etc) instead of showing me the numeric type filter(the one with Greater than, etc). Naturally, filtering with StartsWith will result in an error( the grid is AJAX() bound)
The problem seems to be only with a property on the child of the object model.When i use this:
The filter operator and textbox recognize the column as numeric and display the appropiate filter.
I appreciate the help,
Claudiu
I am using Kendo MVC Wrappers and ran into a problem.
I have bound a column to the grid using:
column.Bound(c => c.ActiveBaseQuote.Amount);
The problem seems to be only with a property on the child of the object model.When i use this:
column.Bound(c => c.Amount);
I appreciate the help,
Claudiu