如何在运行时创建摘要页脚?
我使用 TcxGrid 我在执行时创建了字段,因为我有一个枢轴查询并且列是变量
我像这些代码一样填充了我的网格
grdCevapDBTableView2.BeginUpdate;
grdCevapDBTableView2.ClearItems;
fillGridView(grdCevapDBTableView2,command);
grdCevapDBTableView2.DataController.CreateAllItems;
grdCevapDBTableView2.EndUpdate;
现在我想从这些列中获取总和值。如何在运行时创建摘要页脚?
I use TcxGrid I have create fields on execution time because I have a pivot query and columns are variable
I filled my grid like theese codes
grdCevapDBTableView2.BeginUpdate;
grdCevapDBTableView2.ClearItems;
fillGridView(grdCevapDBTableView2,command);
grdCevapDBTableView2.DataController.CreateAllItems;
grdCevapDBTableView2.EndUpdate;
Now I want to get sum values from these columns. How can create summary footer on runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
举例来说,您有一个名为 cost 的字段,并且您想要汇总总数:
我还将把 beginupdate 和 endupdate 放在 try..finally 块之间,即:
这只是确保您的表视图最终会结束更新并重绘。
Say for example you had a field called cost and you wanted to summarise the total:
I would also stick the beginupdate and endupdate between try..finally block, ie:
this just ensures that your tableview will eventually end the update and redraw.