字符串格式在 Telerik MVC Grid 中不起作用
根据以下文章,如果您想将最大小数位数格式化为 4,但将其截去尾随零 0,则可以使用如下内容:
columns.Bound(p => p.Rate).Width(52).Format("{0:####.####}")
http://www.csharp-examples.net/string-format-double
但它不会删除尾随零。我确实需要节省此网格中的空间,它有 10 多个需要显示的费率列。在大多数情况下,费率只会到达 2 或 3 个地方,但其中一些需要 4 个。
Steve
According to the following article, if you want to format the max number of decimal places to say 4, but have it chop off trailing zeros 0, you use something like this:
columns.Bound(p => p.Rate).Width(52).Format("{0:####.####}")
http://www.csharp-examples.net/string-format-double
But it doesn't remove the trailing zeros. I need to really save space in this grid, it has like over 10 rate columns that need to be displayed. In most cases the rates only go to 2 or 3 places, but a few of them need 4.
Steve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的格式化没有问题。
它应该适用于您的情况,除非您发送已经格式化的十进制值(即转换为字符串)
There is nothing wrond with your formating.
It should have been working for your case, unless you send your decimal values already formatted (i.e. converted into string)