基于 aspxgridview 中页脚行值的计算?
calculation based on footer row values in aspxgridview?
我想根据另一列页脚行值计算特定列的页脚值。我的网格数据如下所示。
a b c d
1 1 1 5
2 2 2 7
Grand total 3 3 3
In d column Grand tot based on the value of
grand total of C column/Grand total of A column*100?
How to calculate the grand total of D column for the above table
using DEVEXPRESS ASPXGridview control?
您需要使用 custom summaries. Handle the ASPxGridView.CustomSummaryCalculate event and implement your logic there. Follow the Obtain Summary Values 文章来获取其他摘要的值。
我想根据另一列页脚行值计算特定列的页脚值。我的网格数据如下所示。
a b c d
1 1 1 5
2 2 2 7
Grand total 3 3 3
In d column Grand tot based on the value of
grand total of C column/Grand total of A column*100?
How to calculate the grand total of D column for the above table
using DEVEXPRESS ASPXGridview control?
您需要使用 custom summaries. Handle the ASPxGridView.CustomSummaryCalculate event and implement your logic there. Follow the Obtain Summary Values 文章来获取其他摘要的值。