I'm trying for format the numbers in my grid pager to have commas if necessary.
Relevant snippet:
pageable: {
pageSizes: [10, 25, 50, 100],
messages: { display: "{0} - #=kendo.toString({1}, 'n0')# of #=kendo.toString({2}, 'n0')#" },
},
The above doesn't work, it just renders the string as-is, replacing the curly-bracketed values with the appropriate ones from the database but not actually executing the formatting aspect. Any guidance on how to format the numbers?