[flexcoders] DataGrid Scrolling Issue

2005-12-04 Thread Alexander Hearnz
Title: Message I've got a tabnavigator where each tab is made up of an accordion whose children contain datagrid controls.  Each datagrid contains multiple columns so the hScrollPolicy="auto" is set to allow horizontal scrolling across the datagrid columns.    Problem is that on each tab

RE: [flexcoders] DataGrid Scrolling Issue

2005-12-04 Thread Abdul Qabiz
Title: Message Hi,   That might be a bug, can you please share the code...Try to post a simple-but-complete-code to reproduce this..   Thanks   -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander HearnzSent: Sunday, December 04, 2005 7:24 PMTo: flexco

Re: [flexcoders] DataGrid Scrolling Issue

2005-12-04 Thread Aldo Bucchi
Just wanted to point out that your description of the problem is a masterpiece I wish my bug reports from QA were written like that. Best, Aldo On 12/4/05, Abdul Qabiz <[EMAIL PROTECTED]> wrote: > > Hi, > > That might be a bug, can you please share the code...Try to post a > simple-but-comple

[flexcoders] File - flexcodersFAQ.txt

2005-12-04 Thread flexcoders
Flexcoders Frequently Asked Questions Last Updated: 30th May 2005 Contributors: Matt Chotin, Steven Webster, Alistair McLeod, Tariq Ahmed, Jeff Tapper,

[flexcoders] How to add an MXML component which is not in the root folder?

2005-12-04 Thread Ralf Rottmann
Hi there,   I have an MXML Component in a sub folder of the Flex (2.0 Alpha) root.   \MainApp.mxml \dialogs\LoginDialog.mxml   The class Flex generates will be dialogs.LoginDialog.mxml   In MainApp.mxml I want to use a state to add this dialog dynamically. If LoginDialog.mxml wou

RE: [flexcoders] How to add an MXML component which is not in the root folder?

2005-12-04 Thread Matt Chotin
  Check out the docs that describe namespaces in MXML.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann Sent: Sunday, December 04, 2005 11:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to add an MXML c

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2005-12-04 Thread Martin Wood
you can use the xmlns attribute either in the application tag (A) to define a namespace thats available throughout the mxml file, or you can use it just within the tag for the login dialog itself (B) If you refer to it by code then you can just use its fully qualified name. (C) A: xmlns:myName

[flexcoders] Interesting post about flex 2.0 by the guys @ el reg

2005-12-04 Thread Clint Modien
A nice promo on flex 2.0...http://www.regdeveloper.co.uk/2005/12/04/anderson/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] Adding rows to a datagrid programmatically

2005-12-04 Thread Ralf Rottmann
I looked for tutorials on the labs site but could not find any. Can somebody send a code example of how to add a row to a datagrid programmatically?   Best regards Ralf   -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search A

Re: [flexcoders] Adding rows to a datagrid programmatically

2005-12-04 Thread JesterXL
:: pseudo code :: :: rave rave rave ::   import mx.controls.gridclasses.DataGridColumn; var dgc:DataGridColum = new DataGridColumn("fieldName"); dgc.columnName = "fieldName"; dgc.headerText = "Pretty Field Name"; myDataGrid.addColumn(dgc);     - Original Message - From: Ralf Rottma

[flexcoders] Can an affect call a function

2005-12-04 Thread nostra72
I was wondering if I can set it up to where I move my mouse away from a control like say a textbox that a function gets called is this possible? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flex

RE: [flexcoders] Adding rows to a datagrid programmatically

2005-12-04 Thread Theodore E Patrick
Ralf,   If you are trying to add a row to a DataGrid you use the DataProviderAPI like so:   myDataGrid.addItem( { a:”Hello” , b:2 } )   cheers,   Ted ;)   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann Sent: Monday, Dece