Hello.
I think this question is simple.
1. I binding to myGrid.ItemsSource someList<someClass>
2. Then I changing some values of someClass object using reflection in ItemsSource List
Then I click on cell (which corresponds to changed class property ), cell is switching to the edit mode, I see that layout is changed correctly.
so, question is: how to update cell or row layout without 'clicking'
Thank you
I`ve found it...
Grid.EnterEditMode(row, cell)
Hi,
Actually, thats not a good way to achieve this.
The best way, is to have a collection that implements INotifyCollectionChanged, and your underlying data objects implement INotifyPropertyChanged. If this is done, then the xamWebGrid will pick up all changes, without you having to do anything.
If for some reason, this isn't feasible. Then you can call the xamWebGrid's InvalidateData method
xamWebGrid1.InvalidateData();
-SteveZ