This works great. I'll continue to look for a more straightforward way that doesn't rely on mx_internal variables. Thank you for this though! This will work...
I just imported some projects from Flex 2 into Flex 3 and it wiped out my html-templates... I spent hours tweaking those files and all that work is gone....
Get them out of backup or SVN. Regards Dale Fraser From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Decoursey Sent:...
I have found that whenever you programatically assign a dataProvider, you must use callLater() to invoke any methods that affect the visual UI. Tracy ...
Make your changes to the index.template.html file. Do a project, clean to make sure the wrapper gets re-generated. If you need multiple start-up conditions,...
I'm trying to do something like this: <mx:Object id="obj" name="velo" age="44"> <mx:job area="IT" worktime="10" /> </mx:Object> And always got: Could not...
VELO - the Flex Object is a 'simple39; storage type... the RemoteObject along with the ObjectProxy are designed specifically for dynamic object management -...
Not to mention the fact that using x (which is a property of visual objects) is a no no! So... are 'i' and 'j' not good enough for you anymore???? huh???...
It seems that flex only changes the default html file all the time, made changes to the template html and then copied it to the bin-debug and then changed the...
i used updateComplete to listen for changes in the dataProvider. private function categoryDataChanged(event:FlexEvent):void{ if(event.currentTarget ==...
where are you getting <mx:Job/> from? it is not an Adobe Class so use whatever job is under ... From: VELO <velo.br@...> To: flexcoders@yahoogroups.com ...
so are you updating the dataProvider and if so just try comboBoxName.dataProvider.refresh() or just try comboBoxName.validateNow() --Come to think of it what...
how are you working this out? some code would help? ... From: valdhor <stevedepp@...> To: flexcoders@yahoogroups.com Sent: Friday, February 29, 2008...
You can make read-only properties bindable. In your case your age property is a read-only property since it only has a getter. The normal bindable stuff...
Im trying just to mimic this proxy behavior. Lets imagine is not one job, but is like RO, several jobs... <mx:Object id="obj" name="velo" age="44"> <mx:job...
Hi, At work we are using maven for all, compile flex (thanks israfil), compile java, build war and build ear. To build war we have a dependency to LCDS 2.5...
Can anyone point me to examples of how to alert the user if/when connection to server is lost in a Flex app? So that they don't watch the spinning clock and...
I guess I'm missing something obvious...are you saying to create the datatip field ahead of time in the file with the datagrid, and put a data tip function in...
Hi Don, Probably you can use XMLSocket. You connect it to your server and when connection breaks for any reason, XMSocket dispatches IOError event. Cheers, ...
dataTipField/dataTipFunction is used to map the dataProvider to a string to be displayed by a renderer. The renderer can just call itemToDataTip(data) on the...
104527
Greg Morphis
gmorphis@...
Mar 1, 2008 6:58 am
This is my first time modifying our production code since taking over a flex project and on the prod server the .java files are .class' files. Please someone...
I have a mini-Air app I make available for AUG members to install on their Desktop to get latest site content via SCAUG onAIR here http://www.spacecityaug.com ...
104529
Greg Morphis
gmorphis@...
Mar 1, 2008 7:24 am
I had the .class files locally from dropping the files into Tomcat to test (outside of Eclipse). I moved those out and everything seems to be working okay....
Thank you Dmitri. I just looked into XMLSocket. Looks like that would work great to test connection to host. In my scenario, the site, spacecityaug.com, would...