[flexcoders] Create Panel Child

2005-08-05 Thread Mehdi, Agha
Title: Create Panel Child Hey guys, I want to create a child of Panel through script. When a child needs to be created, I do the following function createPanelChild() {     var child = "components.category_" + childID;     this.createChild( child, "category" ); } This code runs

Re: [flexcoders] Need help with components.

2005-08-05 Thread joe . g . james
Never mind I got it. Thanks a lot. CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged.  If you are not an intended recipient, you must not read, copy,

RE: [flexcoders] Tabs

2005-08-05 Thread Matt Chotin
disabledColor is a style on UIComponent.  I’d assume that you need to apply it either to the TabBar itself or the individual tab, but of course I haven’t actually played with this J   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kell

RE: [flexcoders] How to handle a returned Java Collection in Flex - RemoteObject call

2005-08-05 Thread Matt Chotin
Yep, use fdb or FlexBuilder’s debugger or the XMLObjectOutput in the extras folder or one of the dump utilities that people have been mentioning over the last few days.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED]

Re: [flexcoders] Need help with components.

2005-08-05 Thread joe . g . james
How would I use that. i do not know the correct syntax. CONFIDENTIALITY STATEMENT - This message and any files or text attached to it are intended only for the recipients named above, and contain information that may be confidential or privileged.  If you are not an intended recipient, you

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Matt Chotin
Yeah, I don’t have any info other than what we put in the docs on this one.  You can of course try upping the cache values and see what happens…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi Sent: Friday, August 05, 2005 2:40 PM

Re: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Aldo Bucchi
Yeah, those are the settings. But knowing the logic that uses them ( and any other variables it takes into account ) might help you diagnose the problem. Just a thought, I would start there if all else looks like a dead end. Best, A On 8/5/05, Stacy Young <[EMAIL PROTECTED]> wrote: > > As far

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Stacy Young
As far as caching is concerned, the only parameters I'm aware of are: true 500 500 1 1 This is on WebLogic running on Solaris... Stace -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo Bucchi Sent: Friday, August 05, 2005 1

Re: [flexcoders] Whats the best way to do this

2005-08-05 Thread nostra72
I did that but I still got the error -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the

Re: [flexcoders] Re: resizing panes via resize effect

2005-08-05 Thread Manish Jethani
On 8/5/05, zipo13 <[EMAIL PROTECTED]> wrote: > The problem is with the data grid that is in the pane. > The grid should occupy 100% in width and 100% in height of the pane > but after its resized is doesn't any more, and when the pane is resize > manually you will see that it exceeds or doesn't fil

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread kaibabsowats
I agree with the JVM relationship. And the multi-threaded answer makes sense. We use JRockit as I have had success with it on other Java nonFlex projects. Renaun --- In flexcoders@yahoogroups.com, "Brian Deitte" <[EMAIL PROTECTED]> wrote: > Some answers and suggestions in regards to compilation

Re: [flexcoders] Need help with components.

2005-08-05 Thread Manish Jethani
On 8/5/05, Joe <[EMAIL PROTECTED]> wrote: > I need to be able to change the label on that button when the > selectedIndex of the tab navigator is changed. How can I do that? Listen for the "change" event on the TabNavigator. Manish Yahoo! Groups Sponsor ---

RE: [flexcoders] Tree branches and Panels

2005-08-05 Thread Tracy Spratt
Put the forms on a ViewStack. You change views by setting: myViewStack.selectedIndex = ; On each "leaf" node of the tree, include the index of the corresponding form in the stack, then on click, just set the view stack index as above. Tracy -Original Message- From: flexcoders@yahoogroup

RE: [flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread Allen Manning
Brian, Thanks so much for such a complete explanation. Allen www.prismix.com/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Deitte Sent: 05 August 2005 16:09 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Fastest Hardware

RE: [flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread Brian Deitte
Some answers and suggestions in regards to compilation speed: - the best hardware to use is probably whatever is best for the JVM you are using. I don't know of and don't think there's any real recommended solutions out there, other than "whatever is fastest". - similarly, one thing that helps

Re: [flexcoders] Tree branches and Panels

2005-08-05 Thread Manish Jethani
On 8/6/05, gradykellydesign <[EMAIL PROTECTED]> wrote: >I have a tree with various nodes. To the right of the tree is an > area with a panel. The tree nodes represent various form names. I > would like to make it so that when a node is clicked, that the form > attached to that node appears

[flexcoders] Tree branches and Panels

2005-08-05 Thread gradykellydesign
Hello All, I have a tree with various nodes. To the right of the tree is an area with a panel. The tree nodes represent various form names. I would like to make it so that when a node is clicked, that the form attached to that node appears in the fore mentioned panel, with that nodes name in

RE: [flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread Allen Manning
Eric, Thanks for the background on this. I agree that it does seem much slower than standard mxml page compilation. Any idea if it is multi-threaded? Allen www.prismix.com/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eric Raymond Sent: 05

[flexcoders] Tabs

2005-08-05 Thread Kelly R
Is it possible to set the fill colors of a disabled tab to something different then the fill colors of a selected tab? I know of a workaround if there isnt but its more complicated then I want to do if there is an easier way.     -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/grou

RE: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread Rob Rusher
I’ve been a Macromedia (Allaire) instructor for years. I’m associated with a Macromedia Authorized Training Partner. I completed the requirements for Flex Certification as defined by Macromedia Training.   In a nutshell, it was not easy.   I may be wrong, but I don’t think Flex Cert

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread Eric Raymond
As an aside, I'll mention some things that you probably know: - If you let the Flex server compile the app as the result of hitting an mxml page, it compiles incrementally ... which is very fast. Of course this doesn't work well via ant (you can use the tag, but there's no easy way to check for

Re: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread David Aden
I ugly hacked Christophe's code awhile ago to add the ability to filter what it shows, to reset the top of the displayed object hierarchy, to refresh and another thing or two. the revised versions are attached. d On 8/5/05, Rob Rusher <[EMAIL PROTECTED]> wrote: > The closest thing I've seen is

[flexcoders] Re: Another framework topic . . . .

2005-08-05 Thread kaibabsowats
As for the RemoteObjects examples being in Java, its pretty straight forward to change out the RemoteObjects to ColdFusion cfc's. The hiccup will be the Value Object (VO) implementation. But there has been some posts about using VO's and ColdFusion cfc's on the list. Passing Array data as cfc ar

RE: [flexcoders] Another framework topic . . . .

2005-08-05 Thread Stacy Young
My suggestion is to pull apart the samples they’ve released with the framework. Look at the UI, follow the events and see where it leads you through the framework. This will help it “sink in”. Then start a small UI port that leverages the framework…and reference the samples when you nee

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Stacy Young
We tried shutting down one machine. No effect, still hangs. :\ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo Bucchi Sent: Friday, August 05, 2005 1:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Loading MXML via JSP on Web

[flexcoders] Another framework topic . . . .

2005-08-05 Thread chris.alvarado
Good afternoone everyone. I know this topic has been thrown around quite a bit in the recent past but I have a few questions Id like to ask and not hijack someone else's topic. First a little about myself and the project in question to give everyone some kind of idea what i need. I am a longtime

Re: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Aldo Bucchi
Matt, perhaps if you could provide details on the compiler's cache resolution policy... what does it take into account to decide if it should recompile? ...is there anything that the clustered env could mess up? On 8/5/05, Matt Chotin <[EMAIL PROTECTED]> wrote: > > > > Yeah, that does seem

RE: [flexcoders] How to handle a returned Java Collection in Flex - RemoteObject call

2005-08-05 Thread Oscar . Cortes
Thanks Matt, that makes sense. However, it still doesn't work. It might be coming with a different name. Is there any way to display the object and the name of its attributes? Thanks, -Oscar.

[flexcoders] Need help with components.

2005-08-05 Thread Joe
I have a start.mxml file that has two components in it. One is a search bar (mrnsearch.mxml) that allows a user to search for a medical record number. The other is a tab navigator (dxlist.mxml) that has two tabs. In mrnsearch there is a submit button which has a label of Get Dx. I need to be able

Re: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread Aldo Bucchi
Mack, Excellent question! you really got things moving... already got two replies from two of the best in each field. My analysis: ARP and Cairngorm are similar beasts. Period. They tackle the same problem, which is basically laying the foundation for a well structured application based on prove

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Matt Chotin
Yeah, that does seem safe to me…  Sorry, I got nothing.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Friday, August 05, 2005 10:16 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Loading MXML via JSP on WebLogi

RE: [flexcoders] Accordeon header, text in different color

2005-08-05 Thread Ashish Goyal
This has been discussed some days ago, search the previous posts. Anyways, it's a very simple solution. Call a function in the change event of the accordion and add the below code to that function. var lastSelected function selectedPane() { lastSelected.set

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Stacy Young
I had the same thought, here’s how we’re loading it :     So I had tried removing that variable (although I thought it would be passed in via flashvars and not force re-compile) and the result was the same.   -Stace   From: flexcoders@yahoogroups.com [mailto:flexcoder

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Matt Chotin
You gotta imagine there’s some cache setting that just isn’t up to snuff.  I’m assuming the JSP isn’t injecting anything into to the MXML file itself.  What if you pre-compiled the JSP maybe (I assume weblogic has a way of letting you do that)?   From: flexcoders@yahoogroups.co

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Stacy Young
Ok we’ve made some progress. We’ve resolved the warnings that were coming up on the screen (even though all settings are in production mode)…and load time is down to 12 secs. On our local machines running XP the app loads in just over 4 secs.   It appears it’s still recompiling on every

RE: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread Kelly
How did you get certified as a Flex Instructor?   I wasn’t aware Macromedia offered Instructor Certification.       From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rob Rusher Sent: Friday, August 05, 2005 11:59 AM To: flexcoders@yahoogroups.

[flexcoders] Re: Fastest Hardware for Flex compilation

2005-08-05 Thread kaibabsowats
CPU is defintely the factor for compiling, as for Dual CPU it depends on if the compiler is multi-threaded. Does any one know if the mxmlc compiler is multi-threaded? --- In flexcoders@yahoogroups.com, "Allen Manning" <[EMAIL PROTECTED]> wrote: > I have 1.5 gigs of memory and still have loads fre

Re: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread JesterXL
Just to drive the point home which again I think is the main way see my perspective, I can't even imagine "hundreds of screens". At most, we have 40 Views, each working out to 16 total forms. That should be a night and day comparison of why I don't see the point of simplfying my Views data ge

Re: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread JesterXL
Thanks for clarifying; I hope you would. However, I still think ARP is lighter weight; I define light weight as "more files = more heavy". ARP doesn't have ViewLocators, ViewHelpers, ModalLocator, etc. My point is ViewHelper and ViewLocators; I don't see the point of abstracting that away; Co

[flexcoders] Re: My Head is in a bin, getUrl with javascript.

2005-08-05 Thread digital_eyezed
Your right! That's it, had enough, Friday afternoon I'm going home! Best Regards, Iain --- In flexcoders@yahoogroups.com, "Geoffrey Williams" <[EMAIL PROTECTED]> wrote: > Perhaps you were missing the single quotes around the variable?: > > function set aler (aler:String):Void { > if (al

[flexcoders] My Head is in a bin, getUrl with javascript.

2005-08-05 Thread digital_eyezed
Hi, I'm working with an IFrame in html and I am passing info from an mxml custom component to an IFrame which contains a javascript function called 'myTest', when I use getUrl with static text in my mxml to call the javascript function in the IFrame it works, this is the function in the mxml p

RE: [flexcoders] Re: Dynamic Tree and VO's

2005-08-05 Thread Matt Chotin
Always use getProperty(“postcode”), not .attributes.  If you happen to change to not using XML your code will break.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of digital_eyezed Sent: Friday, August 05, 2005 5:33 AM To: flexcoders@yahoogroup

RE: [flexcoders] My Head is in a bin, getUrl with javascript.

2005-08-05 Thread Geoffrey Williams
Perhaps you were missing the single quotes around the variable?: function set aler (aler:String):Void { if (aler) { __aler = aler; getURL ("javascript:myFrame.myTest ('" + aler + "');"); } } } -Original Message- From: flexcod

RE: [flexcoders] My Head is in a bin, getUrl with javascript.

2005-08-05 Thread João Fernandes
Don’t forget to scape “ ‘ “.   Try this:   function set aler(aler:String):Void {       if (aler) {         __aler = aler;         getURL("_javascript_:myFrame.myTest(\' ’ + __alert + ‘ \')");         }       }     João Fernandes S

RE: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread Steven Webster
Hi Jesse, I'll just pick up on some points here. My summary is simple however; the design patterns and their interactions, and the implementations of the J2EE concepts in the Flash ecosystem, are largely similar in Cairngorm and ARP. I'd hate to try and do a summary of the differences between

RE: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread Rob Rusher
The closest thing I've seen is the Inspect window that Christophe posted on his blog. http://coenraets.com/viewarticle.jsp?articleId=83 Regards, Rob Rusher RIA Consultant Macromedia Certified Flex Instructor e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher -Original Message- From:

[flexcoders] My Head is in a bin, getUrl with javascript.

2005-08-05 Thread digital_eyezed
Hi, I'm working with an IFrame in html and I am passing info from an mxml custom component to an IFrame which contains a javascript function called 'myTest', when I use getUrl with static text in my mxml to call the javascript function in the IFrame it works, this is the function in the mxml p

[flexcoders] Accordeon header, text in different color

2005-08-05 Thread Stanislav Zayarsky
Hello Everybody, Goal: I need to have text in accordeon header in different color. Maybe htmlText field in that header. As far as I know we have Button in the accordeon header, so my assumption is to extend button class and use it in extended accordeonHeader class. Maybe someone can suggest bett

RE: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread Stacy Young
This may prove helpful…   http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19323   Typically I’ll tail this log with cygwin terminal whiel I’m working. ( tail –f flexlog.txt )   I also turn on debugging in the gateway-config.xml file in WEB-INF which dumps objects to

RE: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread João Fernandes
Try this,   http://www.macromedia.com/devnet/flex/articles/fast_userguide.html   the console panel has a inspector that would allow you to look for your objects.   João Fernandes Secção de Desenvolvimento Departamento de Informática From: flexcoders@yahoogroups.com [m

RE: [flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread Allen Manning
Ghislain, There are many AS dump object functions. I would check out these two resources as a start: http://www.macromedia.com/devnet/flex/articles/client_debug_05.html http://www.richinternet.de/blog/index.cfm?entry=EB3BA9D6-A212-C5FA-A9B1B5DB4 BB7F555 HTH, Allen www.prismix.com/ -Origi

[flexcoders] equivalent to cfdump in Flex?

2005-08-05 Thread Ghislain Simard
Is there an equivalent to a cfdump in Flex? I am trying to display the content of an object. Thanks Yahoo! Groups Sponsor ~--> http://us.ard.yahoo.com/SIG=12hku2lva/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1123261928/

Re: [flexcoders] Container alpha/dimming when disabled

2005-08-05 Thread Niklas Richardson
What about changing the disabled styles to be the same as the non-disabled styles? Or is that not what you meant? On 05/08/05, Matt Chotin <[EMAIL PROTECTED]> wrote: > > > > Not in a documented way unfortunately. The way we actually disable a > container is to put a blocking mask in front

Re: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread JesterXL
I don't have experience using Cairngorm, but I do have experience using ARP in Flash & Flex. First, the marketing & goals side. Comparing them is Apples and Oranges. Yes, both are using good design pattern implementations, yes, both were developed based on similiar ideas, but they both have d

Re: [flexcoders] Fastest Hardware for Flex compilation

2005-08-05 Thread Niklas Richardson
I would imagine that a dual 3GHz CPU set up would increase the speed of compilation. On 05/08/05, Allen Manning <[EMAIL PROTECTED]> wrote: > I have 1.5 gigs of memory and still have loads free when the compilation is > happening. > > Would a second processor assist in mxmlc compilation? > > > A

RE: [flexcoders] Fastest Hardware for Flex compilation

2005-08-05 Thread Allen Manning
I have 1.5 gigs of memory and still have loads free when the compilation is happening. Would a second processor assist in mxmlc compilation? Allen www.prismix.com/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Niklas Richardson Sent: 05 Augu

Re: [flexcoders] Fastest Hardware for Flex compilation

2005-08-05 Thread Niklas Richardson
Lots of CPUs and lots of memory! :) On 05/08/05, Allen Manning <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > I'm trying to get my flex compilation time down to as little as possible. > We are using mxmlc via Ant to compile our flex code. What machine spec > would be the best to b

Re: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread Niklas Richardson
Also, as far as I'm aware, Cairngorm has been taken up by most of the Flex community as the de-facto framework for building Flex applications. We certainly swear by it. On 05/08/05, Niklas Richardson <[EMAIL PROTECTED]> wrote: > Try these to links (via Steven) > > - http://www.bit-101.com/blogad

Re: [flexcoders] Cairngorm vs ARP

2005-08-05 Thread Niklas Richardson
Try these to links (via Steven) - http://www.bit-101.com/blogadmin/mt-comments.cgi?entry_id=99 - http://groups.yahoo.com/group/flexcoders/message/5741 Cheers Niklas On 05/08/05, mackdoyle <[EMAIL PROTECTED]> wrote: > Does anyone have experience working with both and can give a good > comparat

[flexcoders] nested viewstacks, creationPolicy of none and the creation dilemma

2005-08-05 Thread Jaime Bermudez
Hey guys, I'm not sure if this question was fully explored, but I have a case where I have some nested viewstacks that may have creationPolicies of none. They are actally subclasses of the viewstack class, w/ an activate method that will "instantiate" a child if it has not yet been defined (i.e.

[flexcoders] Cairngorm vs ARP

2005-08-05 Thread mackdoyle
Does anyone have experience working with both and can give a good comparative analysis? And what about MossyBlog's Synergy? Yahoo! Groups Sponsor ~--> http://us.ard.yahoo.com/SIG=12hdr4v1u/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=

[flexcoders] Fastest Hardware for Flex compilation

2005-08-05 Thread Allen Manning
Hello,   I’m trying to get my flex compilation time down to as little as possible.  We are using mxmlc via Ant to compile our flex code.  What machine spec would be the best to build these swfs fast.  Would a dual proc help at all?   Thanks, Allen www.prismix.com/   -- Fle

[flexcoders] Re: Dynamic Tree and VO's

2005-08-05 Thread digital_eyezed
Yip, that did it. Thanks, Iain --- In flexcoders@yahoogroups.com, "Michael Herron" <[EMAIL PROTECTED]> wrote: > How about > > > > event.selectedItem.attributes.postcode? > > > > I guess label works as its kind of native to the tree.. > > > > Mike. > > _

RE: [flexcoders] Re: Dynamic Tree and VO's

2005-08-05 Thread Michael Herron
How about   event.selectedItem.attributes.postcode?   I guess label works as its kind of native to the tree..   Mike. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: 05 August 2005 13:09 To: flexcoders@yahoogroups.com Subject: [flexco

[flexcoders] Re: Dynamic Tree and VO's

2005-08-05 Thread bhaq1972
try event.selectedItem.postcode or event.selectedItem.POSTCODE or event.selectedItem['postcode'] --- In flexcoders@yahoogroups.com, "digital_eyezed" <[EMAIL PROTECTED]> wrote: > Sorry, that didn't work either. > > Any other ideas?? > > --- In flexcoders@yahoogroups.com, João Fernandes > <[EM

[flexcoders] Re: resizing panes via resize effect

2005-08-05 Thread zipo13
Forgot to say that the problematic data grid is in pane 2. --- In flexcoders@yahoogroups.com, "zipo13" <[EMAIL PROTECTED]> wrote: > The problem is with the data grid that is in the pane. > The grid should occupy 100% in width and 100% in height of the pane > but after its resized is doesn't any mo

RE: [flexcoders] Loading MXML via JSP on WebLogic

2005-08-05 Thread Dimitrios Gianninas
hi Matt,   The Flex app is not slow, it just takes long to load everytime. It takes about 45 secs to load everytime and yes CPU usage is high at that time. So it seems to be re-compiling itself everytime? I have modified several options in the flex-config but this has not helped, we are co

[flexcoders] Re: Dynamic Tree and VO's

2005-08-05 Thread digital_eyezed
Sorry, that didn't work either. Any other ideas?? --- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]> wrote: > Hi Iain, > > > > Try with selectedNode instead selectedItem. > > > > João Fernandes > > Secção de Desenvolvimento > > Departamento de Informática > > __

[flexcoders] Re: resizing panes via resize effect

2005-08-05 Thread zipo13
The problem is with the data grid that is in the pane. The grid should occupy 100% in width and 100% in height of the pane but after its resized is doesn't any more, and when the pane is resize manually you will see that it exceeds or doesn't fill the pane at all. --- In flexcoders@yahoogroups.co

[flexcoders] Re: Dispatch event problem

2005-08-05 Thread bhaq1972
--- In flexcoders@yahoogroups.com, "Rajesh Jayabalan" <[EMAIL PROTECTED]> wrote: > Has anyone dispatched an event from cell renderer? > > anyone any ideas on how to proceed. > > Regards > Rajesh J yes. in my checkbox cellrenderer after creating the checkbox i added an event listener for click

RE: [flexcoders] Dynamic Tree and VO's

2005-08-05 Thread João Fernandes
Hi Iain,   Try with selectedNode instead selectedItem.   João Fernandes Secção de Desenvolvimento Departamento de Informática From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of digital_eyezed Sent: sexta-feira, 5 de Agosto de 2005 12:03 To: flexcode

[flexcoders] Dynamic Tree and VO's

2005-08-05 Thread digital_eyezed
Hi, I have a tree which is populated (through the dataProvider) from a returned array of VO's from a RemoteObject Call. Within the VO is a number of attributes, two of the attributes are called data and label. The tree shows ok. I want to be able to extract the other attributes that are associ

RE: [flexcoders] Whats the best way to do this

2005-08-05 Thread Philippe Maegerman
you forgot to close to close the click attribute   Philippe Maegerman Web developer +32 2 400 40 39 +32 472 35 28 10 Avoir des rêves, c'est continuer d'exister...   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: jeudi 4 août 2005 18:36T

Re: [flexcoders] resizing panes via resize effect

2005-08-05 Thread Manish Jethani
On 8/5/05, zipo13 <[EMAIL PROTECTED]> wrote: > In my app I have 3 panes. > left and right - and the right one is divided to top and bottom. > ___ > | | | > | |2| > | 1 |_| what I'm trying to do, with a button click effect, is > | | | to resize pa

Re: [flexcoders] Re: Exchanging custom objects between Flex & .NET

2005-08-05 Thread priya s
yeah its possible to return a dataset, with Flash Remoting. There seemed to be no issues.superabe superabe <[EMAIL PROTECTED]> wrote: Wait. Are you saying you were able to successfully return a datasetfrom .Net to Flex using remoting?Last time I checked I thought I had some issues when I tried t

Re: [flexcoders] Re: mouseUp misfire??? and why so many warnings in log file?

2005-08-05 Thread Manish Jethani
On 8/5/05, zhongtie <[EMAIL PROTECTED]> wrote: > But I am still very confused with how the event broadcasting works: it > seems that the event handlers are always fired up, but only one of > them (in our case, the image I clicked on) has the event.target > defined. Why is that? Could be event bub

RE: [flexcoders] Re: How to assign a data provider to a combo box

2005-08-05 Thread Philippe Maegerman
As suggested before, do the binding in the result event of your webservice     Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of terry_hrtnSent: jeudi 4 août 2005 18:25To: flexcoders@yahoogroups.comSubject: [flexcoders] Re: How to assign a data