Skip to search.
flexcoders · RIA Development with Adobe Flex

Group Information

  • Members: 9019
  • Category: Development
  • Founded: Mar 17, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 566 - 595 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
566 Steven Webster
swebsteratit... Offline Send Email
May 2, 2004
7:43 pm
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...
567 Andrew Spaulding
achillesflex Offline Send Email
May 3, 2004
2:31 am
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...
568 marien van os
marvosmirabeau Offline Send Email
May 3, 2004
10:51 am
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...
569 Dan Schaffer
danschaffer Offline Send Email
May 3, 2004
1:34 pm
Andrew, The instance of the new window is returned by the createPopUp call. var newwindow:MovieClip=mx.managers.PopUpManager.createPopUp(this, windowClass,...
570 jeff tapper
jefftappernyc Offline Send Email
May 3, 2004
3:55 pm
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...
571 joshbronson630 Offline Send Email May 3, 2004
5:03 pm
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...
572 Tracy Spratt
nts333rd Offline Send Email
May 3, 2004
5:14 pm
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...
573 Matt Chotin
m_chotin Offline Send Email
May 3, 2004
5:21 pm
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...
574 Matt Chotin
m_chotin Offline Send Email
May 3, 2004
6:58 pm
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@... Send Email
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@... Send Email
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@... Send Email
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@... Send Email
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 ...
579 Matt Chotin
m_chotin Offline Send Email
May 3, 2004
10:04 pm
DataGrid supports addColumn and addColumnAt which are documented in the ASDoc (http://www.macromedia.com/support/documentation/en/flex/1/asdocs/index.html ...
580 jeff tapper
jefftappernyc Offline Send Email
May 3, 2004
10:04 pm
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@... Send Email
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@... Send Email
May 3, 2004
11:10 pm
Thanks Matt, // ============= <mx:Script> import mx.controls.gridclasses.DataGridColumn; function changeProvider(){ var phone = new DataGridColumn("phone"); ...
583 brian_r_christian
brian_r_chri... Offline Send Email
May 4, 2004
1:40 am
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...
584 brian_r_christian
brian_r_chri... Offline Send Email
May 4, 2004
1:48 am
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...
585 Matt Chotin
m_chotin Offline Send Email
May 4, 2004
4:39 am
Eh, guess I should have actually tested before sending that out. Change selectedNode.label to selectedNode.getProperty('label') Matt ... From:...
586 Andrew Spaulding
achillesflex Offline Send Email
May 4, 2004
4:47 am
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...
587 Matt Chotin
m_chotin Offline Send Email
May 4, 2004
5:05 am
You probably did not set resultFormat="xml" (which is good because the DataGrid doesn't support XML) so you're using the wrong syntax. Just use ...
588 pjfarland Offline Send Email May 4, 2004
5:22 am
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. ...
589 bobpardoe1959 Offline Send Email May 4, 2004
7:58 am
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...
590 bobpardoe1959 Offline Send Email May 4, 2004
12:04 pm
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...
591 Raymond Camden
morpheus Offline Send Email
May 4, 2004
3:26 pm
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...
592 Raymond Camden
morpheus Offline Send Email
May 4, 2004
6:29 pm
Why is it that we can't use a DateFormatter as the value of the dateFormatter attribute for dateField/Chooser controls? ...
593 Matt Chotin
m_chotin Offline Send Email
May 4, 2004
11:09 pm
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...
594 Matt Chotin
m_chotin Offline Send Email
May 4, 2004
11:13 pm
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...
595 Matt Chotin
m_chotin Offline Send Email
May 5, 2004
12:04 am
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...
Messages 566 - 595 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help