I can't post any code at the moment but I have a standard radgridview on my view which presents data from an entity framework entity. I have GridViewDataColumns for all but one column which is an expression column. On load the column footer totals show the correct value, i.e. the GridViewDataColumn.AggregateFunction sumfunction routine appears to run in all but the expression column. I have two issues:
My implementation is WPF - MVVM using Caliburn Micro framework.
Since I can't post any code at the moment (it's on another computer) I'm looking for suggestions as to what could be the issue so anyone and everyone, please chime in!
I have tried invoking the CalculateAggregates function in the code behind in the CellEditEnding event and it is invoked but still no upates occur.
Any and all assistance, suggestions are greatly appreciated.
- when I change any value in the grid the column footers are not updated. They do total across and upate their respective row total cell (which is my expression column). And all have the appropriate aggregate function tdefined in the xaml for the type of grid column.
- the expression column total (value in the footer) is never updated at any time and that includes on initial load. It always shows '0'.
My implementation is WPF - MVVM using Caliburn Micro framework.
Since I can't post any code at the moment (it's on another computer) I'm looking for suggestions as to what could be the issue so anyone and everyone, please chime in!
I have tried invoking the CalculateAggregates function in the code behind in the CellEditEnding event and it is invoked but still no upates occur.
Any and all assistance, suggestions are greatly appreciated.