Hey all, Just a quick email - Alistair and I have both had the long weekend off; we are literally finishing the final chapter or two, and I believe that we're...
hi all, im using the command mx.managers.PopUpManager.createPopUp(_root, windowName, true, (deferred: true}); ive got a var declared inside the window that is...
Hello, Is there anyway to make rounded corners on griditems, just like the rounded corners of the Panel ie. corner-radius:2; Or do i really have to embed a...
Andrew, The instance of the new window is returned by the createPopUp call. var newwindow:MovieClip=mx.managers.PopUpManager.createPopUp(this, windowClass,...
Has anyone discovered a pattern as to when a repeater needs to be manually told to "executeBindings()" and when it will happen auto- magically? I haven't...
I'm trying to populate an mx:Tree with an external XML document consisting only of nested <node> tags with label and data attributes. I'm using the Flex...
I shouldn't have been so whiney, this turned out to be easier than I thought, doing just what I said below, using an array to track completion of a queue of...
There's more documentation (including a link to the ACT pattern which this is a version of) in the Flex docs. Search for ACT and you'll get a section called...
Hi Josh, You're using a Model which doesn't distinguish between attributes and child properties. So I think you can do this: <mx:Tree height="200" ...
575
Elliot Winard
ewinard@...
May 3, 2004 7:09 pm
You shouldn't need to call executeBindings() except in extreme circumstances. During compilation, Flex creates watchers for each object (including parameters...
576
David Mendels
dmendels@...
May 3, 2004 7:57 pm
Hi To date, the DRKs has not had any information for Flex. It may in the future. But the vast majority of the DevNet customers are not using Flex, so you...
577
Eric Guesdon
1727@...
May 3, 2004 9:14 pm
Hi, Could you help me to add, at runtime, a column to a dataGrid In the same time how to add, at run time, tag to a mx:Model Sorry for my English Eric...
578
Elliot Winard
ewinard@...
May 3, 2004 9:49 pm
If you find bugs in Flex and you want to us to check them out, you can always file bugs using the Feature Request/Bug Report Form at ...
DataGrid supports addColumn and addColumnAt which are documented in the ASDoc (http://www.macromedia.com/support/documentation/en/flex/1/asdocs/index.html ...
Elliot - If I had a simple path to demonstrate this bug, I'd have filed a bug report on it awhile ago. Sadly, it only seems to crop up in overly complex ...
581
Eric Guesdon
1727@...
May 3, 2004 10:23 pm
Hi, I answer to my question. myDataGrid.columnNames = [“firstname”,”lastname”email”] thanks to all Eric _____ De : Eric Guesdon...
582
Eric Guesdon
1727@...
May 3, 2004 11:10 pm
Thanks Matt, // ============= <mx:Script> import mx.controls.gridclasses.DataGridColumn; function changeProvider(){ var phone = new DataGridColumn("phone"); ...
Matt, I took the liberty of updating the code, and I've put it below. Still no dice...not sure why the demo tree online lets you click on nodes and see the...
It just occurred to me that my previous post may be unnecessary, in that the debate.xml file that's causing the trouble right now is just a stand-in for what...
hi all, ive used a httpservice to retrieve an xml document at runtime. the result of this service call is used as my datagrid dataprovider. when i click an...
If you have a suitable entry point into your tiny java library, i.e. a class with a public, no args constructor, then you should be able to use RemoteObject. ...
I have created three components one is a combobox, a label and the other a text box. The label works fine. The other two however do not seem to be picking up...
The mxml file below shows that when flex sizes components it is not co-ordinating within itself, so that the titles of a tab container are being set at a fixed...
I want to (hopefully using the labelFunction) change the background color of a cell in a datagrid... or change the color of the text. Is this possible w/o...
It is possible if you want to try to compute the cell that's visible. This involves understanding the DataGrid's vPosition, relating that to the data in the...
The DateField and DateChooser classes were written for Flash MX 2004 originally so our formatters didn't exist. Feel free to submit a feature request that...
So normally when you place a TabNavigator in a container other than a Canvas you wouldn't run into this issue because everything would grow accordingly. Since...