I want to persist the AdvancedDataGrid column order for the user if they move them around and close the window or log out. I have code (see below) that works when I place the code in a grid parent container - eg, a title window. I'd like to generalise the functionality by placing the code in an AdvancedDatagrid subclass rather than each grid container so that all my grids have access to a single location when saving/loading their choices. My approach is to store the datafield names and grid name in an array and save/read to/from the shared object. and update the column order based on that order. The invaldation fails when I use the code in the Advanced Datagrid subclass but works fine in the grid parent. Anyone got any ideas?. ive been banging my head against this for 2 days :(
private function loadSettings(name:String = "custom"):void { var gridName:String = this.stripUIDNumbers(this.uid); var temp:Array = new Array;
this.wsColOrder = SharedObject.getLocal(sharedObjectName);
if (wsColOrder.size > 0)
{
for each (var item:* in wsColOrder.data)
{
if (item is Array && item.indexOf(gridName) != -1) // check for the current grid
{
for each (var saveColDataField:String in item)
{
for each (var existingCol:AdvancedDataGridColumn in this._columns)
{
if (existingCol.dataField == saveColDataField)
{
temp.push(existingCol);
}
}
}
this._columns.splice(0); // clean out the existing colum array
this._columns = temp // assign persisted col order
this.invalidateList(); // update the grid
}
}
}
else
{
// saveSettings("default");
}