Re: [Flashcoders] hiding datagrid columns?

2006-02-12 Thread srishti
ya,got it.Thanks. The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender or [EMAIL

RE: [Flashcoders] hiding datagrid columns?

2006-02-09 Thread Srishti Bhatia
] Behalf Of Dave Mennenoh Sent: Wednesday, February 08, 2006 7:55 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] hiding datagrid columns? Could you set the column's width to 0? Are you trying to hide on a button click or something? Dave - www.blurredistinction.com www.macromedia.com

RE: [Flashcoders] hiding datagrid columns?

2006-02-09 Thread Srishti Bhatia
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Nathan Derksen Sent: Wednesday, February 08, 2006 9:43 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] hiding datagrid columns? Use removeColumnAt() and addColumn()/addColumnAt() var dataArray:Array = new Array

Re: [Flashcoders] hiding datagrid columns?

2006-02-09 Thread srishti
Thanks ... Actually,i need the datagrid only once the whole pop-up containing checkboxes is closed.Function for attaching checkboxes in the scroll pane is as follows:But this event for checkbox click is not working. function vek() { this.attachMovie (ScrollPane, scrollpane1, 520);

Re: [Flashcoders] hiding datagrid columns?

2006-02-08 Thread Dave Mennenoh
Could you set the column's width to 0? Are you trying to hide on a button click or something? Dave - www.blurredistinction.com www.macromedia.com/support/forums/team_macromedia/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] hiding datagrid columns?

2006-02-08 Thread Merrill, Jason
Please stop cross-posting! Thank you. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 4:47 AM To:

Re: [Flashcoders] hiding datagrid columns?

2006-02-08 Thread Nathan Derksen
Use removeColumnAt() and addColumn()/addColumnAt() var dataArray:Array = new Array(); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3});