Hi all,
Currently I am facing a problem regarding Radgrid Group Footer Dynamic calculation.
I have a radgrid that have some GridTemplateColumns that allow me to key in some value
Example
<telerik:GridTemplateColumn UniqueName="Quantity" HeaderText="Quantity" DataField="Quantity" Aggregate="Sum" >
<ItemTemplate>
<asp:TextBox ID="lbl_Quantity" Text='<%# DataBinder.Eval(Container.DataItem, "Quantity" , "{0:0.00}") %>'
Width="40px" runat="server" autopostback="true" onTextChanged="calQuantity"></asp:TextBox>
<br />
</ItemTemplate>
</telerik:GridTemplateColumn>
<GroupByExpressions>
<telerik:GridGroupByExpression>
<GroupByFields>
<telerik:GridGroupByField FieldName="Grp"></telerik:GridGroupByField>
</GroupByFields>
<SelectFields>
<telerik:GridGroupByField FieldName="Grp" HeaderText="Week"></telerik:GridGroupByField>
</SelectFields>
</telerik:GridGroupByExpression>
Group Footer displayed correctly when the grid load. However, what I was trying to achieve is when I change the value of the quantity it will auto recalculate the group footer. I tried to achieve it using onTextChanged="calQuantity" but not success.
Do you all have any idea on this?
Thank you.