Telerik MVC Grid - 将数字格式转换为印度显示格式
我正在努力让 Telerik MVC Grid 显示根据印度标准格式化的数字。基本上,我有一个数字,例如 - 55555555555,我希望 Telerik MVC 网格将其显示为 55,55,55,55,555。所以我尝试使用模式“##,##,##,##,###”。这对于上面的例子效果很好。但是,如果我使用 555555555(比前面的示例少两个 5),则它显示为 555,555,555,而不是 55,55,55,555。我不知道为什么会发生这种情况。 如何根据开头提到的印度数字格式让 Telerik MVC 网格显示数字?
I am struggling to get the Telerik MVC Grid to display number formatted according to Indian standards. Basically, I have a number, for example - 55555555555 and I want it to be displayed by Telerik MVC grid as 55,55,55,55,555. So I tried to use the pattern "##,##,##,##,###". This worked well for the above example. However, if I use 555555555 (two 5's less than the earlier example), then it displays as 555,555,555 instead of 55,55,55,555. I am not sure why this happens.
How do I have a Telerik MVC grid display number according to Indian number formatting as mentioned at start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过在网格本身上设置 .Localized("hi-IN") 来本地化网格上的所有值。
Telerik MVC 网格本地化
You can localize all values on the grid by setting the .Localizable("hi-IN") on the grid itself.
Telerik MVC Grid Localization
https://github.com/jquery/globalize#format 有一个 jquery 全球化插件。这使得格式化任务变得非常容易,特别是如果格式化是在客户端完成的。
问候,
涅槃。
There is a jquery globalization plugin available at https://github.com/jquery/globalize#format. That makes the task of formatting very easy particularly if the formatting is to be done at client side.
regards,
Nirvan.