I am using WPF RadGridview and have some aggregate functions like sum
<telerik:GridViewDataColumn Header="OWNED" ToolTip="Owned" HeaderTextAlignment="Center" DataMemberBinding="{Binding OWNED}" IsEnabled="False" IsReadOnly="False" >
<telerik:GridViewDataColumn.AggregateFunctions>
<telerik:SumFunction Caption="Owned: " SourceField="OWNED" />
</telerik:GridViewDataColumn.AggregateFunctions>
</telerik:GridViewDataColumn>
It works good if I am tabing out of this cell.But it doesn't update SUM(without tabing) when I am click on some other control other than grid immediately after editing OWNED field value on grid.I have tried RadGridView_lostFocus which doesn't do any good.Please provide me the solution for this ASAP as i am mid of implementation.
<telerik:GridViewDataColumn Header="OWNED" ToolTip="Owned" HeaderTextAlignment="Center" DataMemberBinding="{Binding OWNED}" IsEnabled="False" IsReadOnly="False" >
<telerik:GridViewDataColumn.AggregateFunctions>
<telerik:SumFunction Caption="Owned: " SourceField="OWNED" />
</telerik:GridViewDataColumn.AggregateFunctions>
</telerik:GridViewDataColumn>
It works good if I am tabing out of this cell.But it doesn't update SUM(without tabing) when I am click on some other control other than grid immediately after editing OWNED field value on grid.I have tried RadGridView_lostFocus which doesn't do any good.Please provide me the solution for this ASAP as i am mid of implementation.