vote up 2 vote down star
2

I'm using a datagrid to display a column of date ranges and several columns of data. I'd like to make the first column (the date ranges) fixed; i.e. that column stays in place when the user scrolls the other columns. That way, the dates column will always be visible as the user scrolls through many data columns. I don't see a datagrid property for this; anyone have a solution? TIA

flag

25% accept rate

1 Answer

vote up 6 vote down check

lockedColumnCount (and lockedRowCount) is more than likely what you are looking for.

http://livedocs.adobe.com/flex/3/langref/index.html

The reason you probably didn't see it is because it is part of the DataGridBase and not part of the DataGrid class itself.

link|flag
How do I use DataGridBase? Flex help states " It is not used directly in applications." Thanks again. – Bob Spidell Jan 13 at 21:35
Woops ... answered my own question (it's visible to the DG, just not documented there). – Bob Spidell Jan 13 at 21:41
yes, exactly. DataGrid inherits all of those properties from the DataGridBase. – Ryan Guill Jan 13 at 21:56
so would you say that this is the answer you were looking for? – Ryan Guill Jan 14 at 1:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.