Hi
I have a server application showing a grouped grid. I also has a client application that can update data in the SQL database thru a WCF API. When the client is updating the WCF host send a callback to the server informing that it has to update the grid.
This is working like a charm until I have a grid with one column grouped. After the server updated the datasource for the gridGroupingControl it will close all open nodes in the grid.
Is it possible to update the datasource and only change data in the cells?! Not closing the nodes? If I do it without grouping it works...
This is how I update the grid.
private void UpdateListOfcompetitors(bool update)
{
if (update)
{
List<ListOfCompetingCompetitor> competingCompetitor = proxy.ListCompetingCompetitors();
gridGroupingControl2.DataSource = competingCompetitor;
}
}
Picture before update is called:
picture after update is called: