[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread dfalling
Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled I've tried setting them all to not resize, then individually resizing each one, but there's always a fluke with the last two columns vying for each other's space. --- In flexcoders@yahoogroups.com

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread rueter007
Of dfalling Sent: Friday, January 11, 2008 7:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled The title sounded like exactly my problem, but the description didn't match up. My issue is simply that variable width

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread dfalling
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Friday, January 11, 2008 7:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled The title sounded like exactly my problem, but the description didn't match up

RE: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread Alex Harui
Post a mini-test-case. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Friday, January 11, 2008 7:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread dfalling
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled The title sounded like exactly my problem, but the description didn't match up. My issue is simply that variable width columns do not resize properly when

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-09 Thread dfalling
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Monday, January 07, 2008 6:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled Sadly I'm kind of locked

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-09 Thread dfalling
PROTECTED] On Behalf Of dfalling Sent: Monday, January 07, 2008 6:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled Sadly I'm kind of locked into Flex 2 for now. I was hoping there was a known workaround to fix

RE: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-09 Thread Alex Harui
%40yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled Sadly I'm kind of locked into Flex 2 for now. I was hoping there was a known workaround to fix this. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com mailto:flexcoders

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-07 Thread dfalling
Sadly I'm kind of locked into Flex 2 for now. I was hoping there was a known workaround to fix this. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Flex 3 should be better at this than Flex 2. horizontalScrollPolicy, resizable properties can also help.

RE: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-07 Thread Alex Harui
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Monday, January 07, 2008 6:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled Sadly I'm kind of locked into Flex 2 for now. I was hoping

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-07 Thread rueter007
after the column is made visible again. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Monday, January 07, 2008 6:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-06 Thread dfalling
Do you mean you removed the column from the columns array? I've tried that too, but they still shrink when I add them back. --- In flexcoders@yahoogroups.com, rueter007 [EMAIL PROTECTED] wrote: I had this problem too when I used the datagrid. The fix I did was to reassign the columns

RE: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-06 Thread Alex Harui
Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled Do you mean you removed the column from the columns array? I've tried that too, but they still shrink when I add them back. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , rueter007 [EMAIL

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-04 Thread rueter007
I had this problem too when I used the datagrid. The fix I did was to reassign the columns property on the datagrid instead of toggling the visibility. - venkat http://www.venkatj.com --- In flexcoders@yahoogroups.com, dfalling [EMAIL PROTECTED] wrote: I've setup a datagrid so that users can

[flexcoders] Re: dataGridColumn width problems

2007-10-22 Thread joshua gatcke
Thanks Alex, That worked perfectly! Such a simple solution, I love it. I guess I missed that property the 100 times I read the property list! lol. I hope that this post helps someone else in the future.

[flexcoders] RE: DataGridColumn width

2007-09-11 Thread Alban Soupper
Sorry, the mail has been sent before I can complete it :-( ... mx:HBox width={dg.width} mx:TextInput id=filter1 ... width={column1.width}/ ... /mx:HBox ... mx:DataGrid id=dg mx:columns mx:DataGridColumn id=column1

RE: [flexcoders] RE: DataGridColumn width

2007-09-11 Thread Alban Soupper
Thanks Stephen :) It's ugly but it works ;) Thanks a lot. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Allison Sent: 11 September 2007 10:37 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] RE: DataGridColumn width Hello

Re: [flexcoders] RE: DataGridColumn width

2007-09-11 Thread Stephen Allison
Hello Alban, I had a similar requirement and ended up catching the columnStretch event of the data grid and laying out inputs (labels for me) on a canvas in the handler for columnStretch. I would hope there's a better way though. It' a shame just binding to the column widths doesn't

RE: [flexcoders] RE: DataGridColumn width

2007-09-11 Thread Alex Harui
Please file a bug for that. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alban Soupper Sent: Tuesday, September 11, 2007 1:52 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] RE: DataGridColumn width Thanks Stephen