Hello,
I had problem in 7.1 that Grid is not updatating its cells values and now i had downloaded its trial version of 7.2 version and its again not updating its cells value when you re bind the grid.Pls let me know how this will fxed.
Thanks in advance.
Rehman Mansoor
It might be that if you rebind the same list instance again, the grid doesn't react at all. I've had a similar issue in 7.1, and assume it still wouldn't work differently in 7.2. When rebinding, I explicitly refreshed the data source like this:
//replace data source - first reset with an empty data sourcegroupGrid.DataSource = new MyItemCollectio();groupGrid.DataSource = realCollection;
However - if you use default binding, the grid would be able to update itself automatically, if your edited contact items implemented the INotifyPropertyChanged interface. This might be a cleaner approach.
HTH,
Philipp
The flow of this problem is just like . I have forms in Tabs when i click the edit cell in the List form then the new tab window is open to edit the detail, and after the saving the detail the detail window close and refresh the list window by rebinding the list again..Pls solve this problem.