Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
626
Summarizing Unbound Column
posted

i am using silverlight infragistics grid.

1. I have column A and column b which is bound column.

2. I have added column c = column b + column A whcih is unbound column,

3. It displays the data, when i do a cell edit and when i exit the cell of Column A or column B it does not change the data in column C ; where as when i go to the same cell changes reflected in column c, any idea how to make it reflect when we exit the cell,

4. do i need create a custom summary class for summarizing column c, or is it a inbuilt function.

Parents
No Data
Reply
  • 6912
    Suggested Answer
    posted

    Hi,

    I've attached a sample application.

    Have a look at MyCustomSummaryOperand.cs - this is where my custom summary is implemented.

    Also look at the CellExitedEditMode event handler at MainPage.xaml.cs - it uses two methods .Refresh() on the unbound cell to refresh the bindings and .RefreshSummaries() on the RowsManager to invalidate the summaries of the grid.

    Regards,

    ForumCase.52343.zip
Children