Flex 3 DataGrid Column Width Problem

后端 未结 4 587
执笔经年
执笔经年 2020-12-20 05:18

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

4条回答
  •  忘掉有多难
    2020-12-20 05:53

    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;
    

提交回复
热议问题