I have a Total column where I want to sum each row. I would like it to update on the client side as the footer does. I have a SummaryRow that totals the columns in the footer but I am trying to sum across each row. I have been Googling and searching the forums but have not found an example. Can someone please tell me how to do this. Do I need to use the UltraWebCalcManager? Thanks in advance.
Hello,
I have been looking into your requirements and I could suggest you handle the Client side event Initialize of our WebDataGrid and iterate through the rows in it:
for (rowindex = 0; rowindex <= rowlength - 1; rowindex++) {
currentrow = rows.get_row(rowindex);
then you can go through all of the columns in this row and sum their values. For further reference I can suggest you take a look at the following forum threads:
http://es.infragistics.com/community/forums/p/42532/235205.aspx#235205
http://es.infragistics.com/community/forums/t/52184.aspx
If you need any additional assistance on this please do not hesitate to ask.
Is there a working example I could see somwhere? I want the row total to update anytime a cell in that row is changed.
Please let me know if this works in your scnario as well.