How can create summary footer on runtime?

Posted by Rapunzo on Stack Overflow See other posts from Stack Overflow or by Rapunzo
Published on 2010-03-25T09:10:37Z Indexed on 2010/03/25 9:13 UTC
Read the original article Hit count: 629

Filed under:
|
|
|

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?

© Stack Overflow or respective owner

Related posts about delphi

Related posts about tcxgrid