Hi,
With the windows ultragrid there is a method to save and load the displaylayout that work like this:
this.DisplayLayout.LoadFromXml( fs, PropertyCategories.All ); this.DisplayLayout.SaveAsXml( fs, PropertyCategories.All );
What is the equivalent way of doing this with the webgrid? Basically I need to give the users of the web application I'm developing the ablity to show/hide columns in a grid, group and sort as they please, and then save off those settings so that they next time they load the grid the contents will be display layout will be the same.
Did you ever find a solution for this problem?
No I didn't. Apparently I stumped the infragistics support people on this one. I ended up writing some code to enumerate all the columns in the grid, let them choose which ones to show and hide, and then saving that off to a database.