I am applying custom paging and sorting in the kendo grid. For one of my column I am getting a numeric text box. When I insert the value in numeric text box it is integer, but a
You can set like below
columns.Bound(x => x.Property).Filterable(x => x.UI("NumericFilter"));
Or use extension method
columns.NumericColumn(x => x.Property);
public static GridBoundColumnBuilder NumericColumn(this GridColumnFactory Column, Expression> Expression) where TModel : class
{
return Column.Bound(Expression).Filterable(x => x.UI("NumericFilter"));
}