Telerik MVC Grid - 总和错误
我使用以下行来获取列总和:
columns.Bound(item => item.McGross).Width(50).Title("Amount").Aggregate(aggreages => aggreages.Sum()).Format("{0:c}").FooterTemplate(result =>
{ %><%= result.Sum.Format("{0:c}") %><% });
当任何列值为空时,我会收到错误。我如何使用“if”null put“0”作为该记录。提前致谢。
I am using the following line to get a column sum:
columns.Bound(item => item.McGross).Width(50).Title("Amount").Aggregate(aggreages => aggreages.Sum()).Format("{0:c}").FooterTemplate(result =>
{ %><%= result.Sum.Format("{0:c}") %><% });
I get error when any of the column valuse are null. How can I use "if" null put "0" for that record. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Telerik 的好心人已经提供了答案,就是:
它有效。希望这可以帮助别人。
The good people at Telerik has provided an answer, here it is:
It worked. Hope this could help someone else.