Changing the kendo numeric filter format

后端 未结 8 1627
孤街浪徒
孤街浪徒 2021-02-09 12:16

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

8条回答
  •  孤城傲影
    2021-02-09 13:00

    What Palani Kumar has said still inserts separators, that is it converts 12345 to 12,345; so i recommend the following edited code in case you want pure numbers without any formatting (no separators, no decimal points etc.).

    columns.Bound(x => x.Property).Filterable(x => x.UI("numericFilter"));
    
     
    

提交回复
热议问题