Hi,
I'm testing GridGroupingControl for my project.
End user has possibility:
- reorder columns by dragging
- change width of each
- set sorting on one or more
After reorganization user expects that it will be saved and when he start application again it looks the same.
In MyForm.Form_closing I added code:
ISGrid.WriteXmlSchema(xw);
ISGrid.WriteXmlLookAndFeel(xwApp);
and in MyForm.Load:
ISGrid.ApplyXmlSchema(xr);
ISGrid.ApplyXmlLookAndFeel(xrApp);
It's working good.
But I have problem.
When I prepare new version and add something e.g. change colors for alernate rows or add summarizing it is not working because in xml is saved old schema.
Questions
1) It is good way to save this information ? Maybe exists better.
2) How applied from xml only this information which described on begin this post ? e.g. column size and order, sorting