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
Set the filter column as
column.filterable = { ui: numberFilter, cell: { template: numberFilter, } }; function numberFilter(args) { var element = args instanceof jQuery ? args : args.element; element.kendoNumericTextBox({ format: "n0" }); }