Hi!
I need to store some view info for my grid. So I use
grid1.DisplayLayout.SaveAsXml(stream, PropertyCategories.All);
But I realized that my ValueLists can be changed between store and load. Can I save my grid without ValueLists so they got refreshed automatically during Loading?
Mila.
Hi Mila,
I'm pretty sure that one of the PropertyCategories is ValueLists. So you can exclude these from the saving and loading easily enough by just removing the flag.
Another option is to simply load the layout before you assign your ValueLists to the grid.