vote up 0 vote down star

I have a DataGrid that has between 4-10 columns. I want the columns to be of width '50'. I have already set the width attribute in MXML. I am using "colName.hide = true" to hide various columns depending on whether I have data. I find that my columns expand when I have less columns. Is there a way to set the max width of a column or force it to keep the same width?

flag

2 Answers

vote up 1 vote down check

You have to leave one column with undefined width - it will stretch when parent (grid) will be resized.

Or, you should recalculate and apply width of the greed dynamically

link|flag
I went back and did it this and it works much better. – rmh15 Jul 24 at 21:08
vote up 2 vote down

Why not just resize the width of the datagrid itself to 50 * amtOfCols when columns are hidden and shown?

link|flag
This is what I ended up doing yesterday. It isn't as elegant as I would have liked but it worked:) I would have preferred to keep it the width and height of the datagrid in percent form. I couldn't do that because it kept going crazy. – rmh15 Jul 17 at 16:25

Your Answer

Get an OpenID
or

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