I have SEVERAL XamDataGrids in my application, and I want all of them to enable the respective Save buttons as soon as the user changes a checkbox in them. This currently doesn't happen until I leave the cell or press enter etc, because the cell is still in edit mode. I know how to fix this using a post I found in code-behind:
private void XamDataGrid_CellChanged(object sender, Infragistics.Windows.DataPresenter.Events.CellChangedEventArgs e) { e.Cell.Record.SetCellValue(e.Cell.Field, e.Editor.Value, true); }
But how can i handle this for ALL my grid across the app, without putting this in code-behind for every grid? I am using MVVM and would prefer to not have any code behind, if possible. If I have to, i will, but i defintitely don't want it in the code behind in 17 different files with grids.
Finally this file helped me
NetAdvantage WPF 20131.2256 SR.zip
I am using infragistic 13.1.
How can I download 13.1 latest service release without moving to 13.2. When I am downloading it through the link given in pdf(dl.infragistics.com/community/wpf/ReleaseNotes/October_WPF_13_1_SR.pdf ) it downloads 13.2.
awesome thank you, I have upgraded to the newest service release and this works great.
HI ,
That property was added in a service release. Download and install the latest service release.
hmmm When i add that property to my project it is not recognized or is not accessible. Same thing with your sample, causing it not to build etc. as soon as i remove that property, everything works fine. I am using 13.1, which appears to be same version you are.