字符串格式在 Telerik MVC Grid 中不起作用

发布于 2024-12-17 06:44:01 字数 389 浏览 2 评论 0原文

根据以下文章,如果您想将最大小数位数格式化为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隐诗 2024-12-24 06:44:01

你的格式化没有问题。
它应该适用于您的情况,除非您发送已经格式化的十进制值(即转换为字符串)

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文