Adapting the width of a Flexs 3 DataGridColumn to the content of its ItemRenderer ?

Posted by phtrivier on Stack Overflow See other posts from Stack Overflow or by phtrivier
Published on 2010-05-07T16:35:02Z Indexed on 2010/05/07 16:38 UTC
Read the original article Hit count: 177

Filed under:
|

I have the following scenario :

  • A Flex 3 DataGrid is sitting here
  • At runtime, a column is added to this grid
  • The column has a custom ItemRenderer
  • The ItemRenderer inherits from HBox, and adds a few items to the HBOx dynamically

My problem is that the width of the column doesn't change. As a consequence, my column stays small, and an ugly horizontal scrollbar is displayed in the line, instead of my content (which is completely unreadable).

I would like the column to adapt its width to the content of the HBox in the ItemRenderer. I tried the following :

  • Setting the 'percentWidth' of the ItemRenderer to '100'
  • Invalidating the properties of the ItemRenderer after adding the items

The only thing that has a "visible" effect it to force the width of the DataGridColumn. Obviously this is not acceptable since I'm dynamically adding components to the ItemRenderer, and I don't know how many or how big they are.

Besides, when I am in the ItemRenderer, I have no access to the column itself (or do I ?) so I cannot force the size of the column from here.

So is there a way around this ? Would AdvancedDataGrid help here (notwhistanding the fact that I cannot really use it for other reasons ...)

Thanks

PH

© Stack Overflow or respective owner

Related posts about flex3

Related posts about datagrid