I\'m pulling xml data to determine which columns are visible, and the widths of each column. My datagrid\'s width can change sinces its on one side of a HDividedBox. The vis
Ok - we've run into this ourselves while building support for various column width modes. Just a little tidbit of information - if you want to set widths explicitly, make sure you do something like this:
var oldPolicy:String = grid.horizontalScrollPolicy;
grid.horizontalScrollPolicy ="on"
//set your widths here
grid.horizontalScrollPolicy =oldPolicy;