Telerik MVC Grid - 总和错误

发布于 2024-11-28 20:04:56 字数 322 浏览 0 评论 0原文

我使用以下行来获取列总和:

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 技术交流群。

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

发布评论

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

评论(1

浸婚纱 2024-12-05 20:04:56

Telerik 的好心人已经提供了答案,就是:

.FooterTemplate(result =>
{
  %>Total Sum: <%=
    (result.Sum == null || (double)result.Sum.Value == 0.0)
      ? "Value not available"
      : result.Sum.Format("{0:c}")
    %><%
});

它有效。希望这可以帮助别人。

The good people at Telerik has provided an answer, here it is:

.FooterTemplate(result =>
{
  %>Total Sum: <%=
    (result.Sum == null || (double)result.Sum.Value == 0.0)
      ? "Value not available"
      : result.Sum.Format("{0:c}")
    %><%
});

It worked. Hope this could help someone else.

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