In adobe Flex datagrid height is equally to fix height . I want to make datagrid height is depend data .

link|improve this question

25% accept rate
feedback

9 Answers

You can set each row of the datagrid to fit based on the contents of a particular column of that row by setting the "variableRowHeight" attribute to true on the datagrid and setting the "wordWrap" attribute to true on the dataGridColumn that will contain the variable height content.

link|improve this answer
feedback

I don't quite understand your question but if you are asking how to size the DataGrid to the number of rows in the dataProvider, you can try:

dataGrid.rowCount = yourCollection.length;

or

<mx:DataGrid rowCount="{yourCollection.length}"/>
link|improve this answer
feedback

I get the same problem, using Flex SDK 3.3. I've seen several Adobe bug reports over the years regarding this, but the bug checkers always say it's resolved. Best thing I can suggest is to set an explicit pixel height on the datagrid, or you can try this:

dg.height = dg.measureHeightOfItems(0, dgDataProvider.length) + dg.headerHeight;

Bart

link|improve this answer
feedback

Far and away the weirdest problem I've had with Flex is how to simply make Lists and DataGrids size to their contents (not show a scroll bar or any empty rows). I would've thought it would be totally straight forward even with variable row heights. It seems barely anyone else has this problem?!

<mx:DataGrid rowCount="{yourCollection.length}"/>

A repeatedly see the above solution - which doesn't work. I get a scroll bar and an extra blank row when there is more than one item in the collection.

link|improve this answer
I'm having the same problem. Very annoying bug. I use a binding expression on the rowCount and nothing happens. I still get an extra row. – Laxmidi Jul 30 '10 at 14:15
feedback

Thanks for those saying:

<mx:DataGrid rowCount="{yourCollection.length}"/>

- this actually works for me in Flex 4. However I'd like to point out that according to the documentation "rowCount includes the header row", so I suppose the answer should be

<mx:DataGrid rowCount="{yourCollection.length + 1}"/>

Nevertheless, I think the doco is wrong because the former solution works for me.

Otherwise, does this help? http://www.actionscript.org/forums/showthread.php3?t=220962

link|improve this answer
Seems like the error is fixed back, to reflect what it says in the documentation in flex 4.5 =) – pico.creator Jul 25 '11 at 23:37
feedback

Thanks Brat for your answer, that worked for me(in a way). There is just a little modification,when we calculate the height using above calculation a vertical scroll appears, we also need to set verticalScrollPolicy = "off" so that it never shows

link|improve this answer
feedback

Of course, avoid in your datagrid MXML something like height="100%" or top="10" bottom="123"

link|improve this answer
feedback
var rwcnt = xmllist.length();// dataprovider.length

ADG.rowHeight = 20;

var rht = ADG.rowHeight;

ADG.height = (rwcnt * rht) + 26;

this is what i got solution to control the size of advanced datagrid

link|improve this answer
feedback

In Spark DataGrid you can set the requestedRowCount to the dataProviderLength, BUT on condition you Do Not Set a Height for the Datagrid.

Also, for a dataProvider that has a length of less than 3, It'll always show 3 rows.

Note Also Spark offers us requestedMaxRowCount & requestedMinRowCount.

link|improve this answer
feedback

protected by Bill the Lizard Sep 13 '11 at 3:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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