Search code examples
kendo-uikendo-grid

Format number with no decimal places and no comma in kendo ui in jquery


How do i format value in column of Kendo UI Grid with no decimal and no comma? I have used below code for remove decimal but now showing coma.

Thanks in advance!

{
    field: "SchCall", 
    title: "Sch Call", 
    hidden: false, 
    width: "15%", 
    format: '{0:n0}'
}

Solution

  • Format :"{0:n0}" : If you add "n" mean number format, which add commas and second zero mean 0 decimal.

    So, I have used {0:0} for no decimal and no commas.

    Reference Link : http://docs.telerik.com/kendo-ui/framework/globalization/numberformatting