ASP.NET MVC 格式网格列

问题描述 投票:0回答:1

我是 EJ 网格中日期时间格式的下一个代码

col.Field("BBDate").HeaderText("BBDate").Format("{0:dd/MM/yyyy H:mm}").Add();

它工作正常。

但是我要为双格式写什么呢? (数学.round(x, 3)) (在列值 N2 的所有行中设置变体格式(“N2”)

c# asp.net-mvc format grid
1个回答
0
投票

使用:

col.Field("ProductSpeed").Format("{0:n2}").HeaderText("Скорость пр-ва (кг/час)").TextAlign(TextAlign.Right).HeaderTextAlign(TextAlign.Left).Width(80).Add();

并查看结果:

1

© www.soinside.com 2019 - 2024. All rights reserved.