:: Forum >>

Retrieving grid settings so they can be saved

Is there a way to retrieve grid settings so that they can be applied to the grid the next time a given user views the grid. For example, if a user resizes columns widths in order to customize the grid, is there anyway to retrieve that column width value so that I can apply it to the grid the next time it is viewed? I see many set functions in the library but not any get functions that would allow me to get to grid settings.

Any help would be great.
mfb
Friday, November 16, 2007
obj.onColumnWidthChanged = function(value, index) {
var r = new AW.HTTP.Request;
r.setURL("savelistinfo.asp?&Field=Int"+(Number(index)+1)+'&value='+value);
r.setRequestMethod("POST");
r.request();
}
Armit
Monday, November 19, 2007
Most of AW properties have both get and set accessors. To see them all enable 'show all methods' checkbox on this page -

http://www.activewidgets.com/aw.ui.grid/
Alex (ActiveWidgets)
Tuesday, November 20, 2007

This topic is archived.


Back to support forum

Forum search