3.2.0

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
November 16,
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
November 19,
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)
November 20,

This topic is archived.

See also:


Back to support forum