I'm using the RadGrid as a worksheet. On each row item, I have a series of textboxes in GridTemplateColumns and at the end a GridBoundColumn that has Aggregate="sum" so that I can have a grid group footer of the subtotal of total of each row.
The client wants the totals to update whenever the value of a textbox changes without submitting the page. I've figured out the javascript to change the total column, but I'm stumped as to how to change the values of the grid group footer item and the footer item.
I can get the ClientID of the GridTableCell that contains the totals at the ItemDataBound event, but I won't have the complete list of ClientIDs until after it's finished. I thought I'd be able to loop through the grid items in the PreRender event, but the GridGroupFooterItems don't show up there.
Does anyone have an idea on how to accomplish this?
The client wants the totals to update whenever the value of a textbox changes without submitting the page. I've figured out the javascript to change the total column, but I'm stumped as to how to change the values of the grid group footer item and the footer item.
I can get the ClientID of the GridTableCell that contains the totals at the ItemDataBound event, but I won't have the complete list of ClientIDs until after it's finished. I thought I'd be able to loop through the grid items in the PreRender event, but the GridGroupFooterItems don't show up there.
Does anyone have an idea on how to accomplish this?