Re: [flexcoders] Re: Using a drag proxy

2005-05-26 Thread Manish Jethani
On 5/27/05, digital_eyezed <[EMAIL PROTECTED]> wrote: > Where is the documentation on this kind of class extension, where do > I find the constructor for dragProxy in order for me to know how to > add the image in the createChilren function? As Matt mentions, overriding the dragProxy in this way

[flexcoders] Re: Disabling individual list items

2005-05-26 Thread alex_harui
Unfortunately, there's no built-in API for disabling a row. There's no official API to get at individual rows either. You could set an "enabled" property on a row using setPropertiesAt, then have a custom cellRenderer look for it and disable itself. Yahoo! Groups Links <*> To visit you

RE: [flexcoders] I need assistance with datdgrid row height.

2005-05-26 Thread Tracy Spratt
Here is a sample app: http://www.macromedia.com/2003/mxml";> -Original Message- Fr

RE: [flexcoders] I need assistance with datdgrid row height.

2005-05-26 Thread Tracy Spratt
Did you also set wordWrap="true" on the appropriate DataGridColumn? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ryan99899 Sent: Thursday, May 26, 2005 5:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] I need assistance with da

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-26 Thread dave buhler
Interesting... So if I use the named remote objects in the flex-config file, the paths to the CFCs aren't visible? I should use a decompiler on my own app to see, but I had assumed the paths would be compiled. DaveOn 5/26/05, Indy Nagpal <[EMAIL PROTECTED]> wrote: Have you looked at creating

[flexcoders] I need assistance with datdgrid row height.

2005-05-26 Thread ryan99899
I am loading search results in a datagrid and I need to make the row heights automatically change based on the length of the text. variableRowHeight is not getting the job done. The problem may lie in the cell renderer but I need a suggestion to fix this. Thanks ryan Yahoo! Groups Lin

[flexcoders] Re: Using a drag proxy

2005-05-26 Thread digital_eyezed
Thanks for your help so far: Where is the documentation on this kind of class extension, where do I find the constructor for dragProxy in order for me to know how to add the image in the createChilren function? Do I just add: var image1 = createClassObject(mx.controls.image, something, somet

[flexcoders] Disabling individual list items

2005-05-26 Thread Jeff Beeman
I'm trying to figure out how to disable an individual list item (just one item from a list of 20, for example), but I can't see where to set the enabled="false". I don't want to remove the items from the list - I just want them to not be selectable. Any thoughts / experience with this? /***

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-26 Thread Indy Nagpal
Have you looked at creating named remoteobjects? That way even though the methods might be visible in the decompiler, but path to the actual cfc won't be. Hmm... regarding your swf file finally being part of cfm page... I've find myself more comfortable with "standalone" flex apps (that interact w

Re: [flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread Isidro Leos Viscencio
Use a DataModel to receive the webservice results   - Original Message - From: Francesco To: flexcoders@yahoogroups.com Sent: Thursday, May 26, 2005 7:55 AM Subject: R: [flexcoders] WebSercices, result, Array, DataGrid - Problems I've checked (case, ...) a

RE: [flexcoders] file handling

2005-05-26 Thread Tracy Spratt
Found it. It is under this subject: "Great Abdul (c++/flex) source c++ <--> flex " Posted around 4/14 Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Thursday, May 26, 2005 4:27 PM To: flexcoders@yahoogroups.com Subje

RE: [flexcoders] file handling

2005-05-26 Thread Tracy Spratt
Short answer: No. Long answer: Client file system access is limited by the security sandbox, both at the browser and Flash Player level. You can achieve file upload capability using a custom HTML wrapper containing custom javascript. Here's one link, google will find more. http://www.flexauthor

Re: [flexcoders] file handling

2005-05-26 Thread dave buhler
As in, the user can upload an MP3 file through Flex?On 5/26/05, Drew Falkman <[EMAIL PROTECTED]> wrote: Is there any moderately simple way to do file handling on the client (e.g.to prompt for a user to save a file, such as an mp3)? TIA.Drew FalkmanVeraison, LLCYahoo! Groups Links<*> To visit you

[flexcoders] mousedown scope

2005-05-26 Thread Tom Fitzpatrick
I have a custom component, based on the Panel component, that can be selected with a mousedown. The component contains subcomponents that also have mousedowns with different behaviors. Is it possible to disassociate the two? Right now, clicking the subcomponent also selects the Panel. I'd like

[flexcoders] file handling

2005-05-26 Thread Drew Falkman
Is there any moderately simple way to do file handling on the client (e.g. to prompt for a user to save a file, such as an mp3)? TIA. Drew Falkman Veraison, LLC Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe

RE: [flexcoders] flexapps.macromedia.com source?

2005-05-26 Thread Matt Chotin
Not for the most part.  Christophe’s blog has the source for a few of them.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rick Schmitty Sent: Thursday, May 26, 2005 2:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flexapps.macrom

Re: [flexcoders] Re: Not diplaying properly in Firefox browser?

2005-05-26 Thread James Ward
Eric (& anyone else interested), I just finished a simple Greasemonkey script which fixes this problem. :) Check out the details: http://www.cayambe.com/ I can now see .mxml pages in Firefox on Linux! :) -James On Wed, 2005-05-04 at 11:19 -0700, Eric Raymond wrote: > It happens on two machin

[flexcoders] flexapps.macromedia.com source?

2005-05-26 Thread Rick Schmitty
Hi all, I was just wondering if MM provided source on some of these things?  I realize they are probably all in weblogs somewhere..but a single point would be nice Site I'm talking about: http://flexapps.macromedia.com/flex15/ Thanks for any info Yahoo! Groups Links To visit your grou

RE: [flexcoders] Using a drag proxy

2005-05-26 Thread Matt Chotin
Note that overriding the dragImage getter is undocumented/unsupported/use-at-your-own-risk…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Manish Jethani Sent: Thursday, May 26, 2005 2:07 PM To: flexcoders@yahoogroups.com Subject: Re: [flexc

Re: [flexcoders] Using a drag proxy

2005-05-26 Thread Manish Jethani
On 5/26/05, digital_eyezed <[EMAIL PROTECTED]> wrote: > I have a fully functioning drag and drop operation going on. All I > want to do is add an image using the drag proxy functionality to the > application. > > Here is the tree I drag from: > > height="100%" dragEnabled="true"/> [...] You ca

RE: [flexcoders] Access mouse selection

2005-05-26 Thread Abdul Qabiz
Hi, You can use the Selection Object for the same. Tracy already posted the link of docs. Just wrote a quick and dirty example, look at it and read the comments in the code to know what is happening. ##SelectionObjectExample.mxml## http://www.macromedia.com/2003/mxml"; >

Re: [flexcoders] Custom ComboBoxCellRenderer Issue

2005-05-26 Thread Manish Jethani
On 5/26/05, Pradeep Chaudhary <[EMAIL PROTECTED]> wrote: > This is my second post regarding custom cell renderer issue. I'am > trying to create a custom ComboBoxCellRenderer to be used in DataGrid. > By default label is selected Item label value. On clicking in the cell > ComboBoxCellRenderer is d

RE: [flexcoders] DateField/DateChooser "CellRenderer"?

2005-05-26 Thread Richard Butler
Cheers for that guys... Will try both methods and hope for some luck :-) Rich -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: 26 May 2005 18:31 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DateField/DateChooser "C

Re: [flexcoders] DateField/DateChooser "CellRenderer"?

2005-05-26 Thread Manish Jethani
On 5/26/05, Richard Butler <[EMAIL PROTECTED]> wrote: > The reason behind this need is that for a hotel reservation interface I > need to block out dates on a calendar for different reasons, and provide > a different state accordingly. For example, a date may be completely > sold out (signified by

RE: [flexcoders] Access mouse selection

2005-05-26 Thread Tracy Spratt
Search for "Selection Class" in the LiveDocs: http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/js/ht ml/wwhelp.htm Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Reto M. Kiefer Sent: Thursday, May 26, 2005 1:01 PM To: Flex

RE: [flexcoders] DateField/DateChooser "CellRenderer"?

2005-05-26 Thread Battershall, Jeff
Rich, I speak French also - mostly at times of great stress. Perhaps this might have some of what you're looking for... http://www.richinternet.de/blog/index.cfm?entry=4DA93A40-FEB8-2E53-6D6DA35A0E7B46D2 Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] How i can do it?

2005-05-26 Thread Tracy Spratt
I am doing to this successfully. To scroll the dg you need to set vPosition, but I don't see anything else wrong. Put a trace in the loop so you can look at the comparison: trace("indexOf: " + dg.dataProvider[x].name + " search for: " + TextInput.text) Tracy Here is my code: private fun

[flexcoders] Access mouse selection

2005-05-26 Thread Reto M. Kiefer
Hello list, I searched for a reasonable time but got no working result. I'd like to know how do I access with ActionScript the selected text, the user can select with the mouse in a editable textarea. Just the selection, before copied or cut... Background I want to modify the selection and ret

RE: [flexcoders] dynamic dataprovider for the datagrid

2005-05-26 Thread Tracy Spratt
Check out the "Flex TreeGrid" on the Advanced tab on the Flex Authority website: http://www.flexauthority.com/samplesIndex.cfm Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pv_rprasad Sent: Thursday, May 26, 2005 6:46 AM To: flexcoders@yah

RE: [flexcoders] Tree change event

2005-05-26 Thread Tracy Spratt
I don’t see that behavior.  Try the sample app below.  Select a node, the node label will display in the Label field below. CTRL-click that node to deselect, and the Label control becomes empty. Tracy             From: flexcoders@yahoogroups

RE: [flexcoders] Applications forgetting variables

2005-05-26 Thread Tracy Spratt
Create a new sample application that shows the problem you are having.  It is important to have an entire sample that we can run immediately, and that has only the minimum code required to show the issue. Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.c

RE: [flexcoders] Re: Binding a webservice result to a dataprovider

2005-05-26 Thread Tracy Spratt
The dataProvider can be contained in an object, but the dataProvider assignment should be an array (for list based controls). Attached is an example that takes two xml source files, builds a dataProvider using one column (yesterday) from one file and the rest from the other, and adds a column tha

[flexcoders] DateField/DateChooser "CellRenderer"?

2005-05-26 Thread Richard Butler
Hi guys, I've got a bit of a messy issue here (unless there's a gorgeous undocumented feature I can't find :-) - but I need to create a CellRenderer for a DateField component. Now, I presume I can do this either of two ways: either there's a magical cellRenderer type thing for the DateField that I

RE: [flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread Matt Chotin
You’re bound to myService.GetAllHeaders.result right?  And is that value null or OK?  If OK, what is the length, 9?  If so maybe don’t trust the debugger and write a little debugging code to see the value of your objects.    for (var p in myService.GetAllHeaders.result[0])   trace(p +

Re: [flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Tom Fitzpatrick
Dan - At 11:04 AM 5/26/2005, you wrote: >Just out of interest, are you using the Ant script, or are you doing >all the configuration manually ? No, I wasn't using the Ant script. Thanks again. - Tom Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo

[flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Daniel Harfleet
Tom, thanks for the feedback on the docs, I will ammend the typos. There seems to be some inconsistancy at where Tomcat thinks the current directory is, maybe on some operating systems and/or some versions of Tomcat, it thinks it is in the web context and others, it thinks it is under the webapps

R: [flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread Francesco
When I call a WebService the "result" is empty but if i look with the Network Monitor the "response" is full.   Is that a problem with the web Service?   here is what i see with the debugger; (all object should be full with items...)   [array] : length[Number] : 9     [0][object] :

Re: [flexcoders] Custom DateCellRenderer issue.

2005-05-26 Thread Pradeep Chaudhary
Thanks Alistair. Surprisingly I had tried this same thing before sending the post but i was not able to acheive expected results. May be something else was also missing at that time. Thanks again, Pradeep On 5/25/05, Alistair McLeod <[EMAIL PROTECTED]> wrote: > Hi Pradeep, > > Change your focu

RE: [flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Tom Fitzpatrick
At 10:29 AM 5/26/2005, you wrote: >So please ensure that you hve the catalog.script file copied into >the db/ directory that you have created; This did work - thanks! But - for the sake of others who might be confused - the odd thing is that I didn't create that db folder, it was created au

[flexcoders] Custom ComboBoxCellRenderer Issue

2005-05-26 Thread Pradeep Chaudhary
Hi, This is my second post regarding custom cell renderer issue. I'am trying to create a custom ComboBoxCellRenderer to be used in DataGrid. By default label is selected Item label value. On clicking in the cell ComboBoxCellRenderer is displayed with selected value. But the ComboBox never disappear

Re: R: [flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread bhaq1972
Just an idea. Make all the columnNames uppercase in your mxml. --- In flexcoders@yahoogroups.com, "Francesco" <[EMAIL PROTECTED]> wrote: > I've checked (case, ...) and all seems to be correct :-( > > Should I trasfer the result to a model? > > Thanks > Francesco > -Messaggio origina

RE: [flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Steven Webster
> In addition to the above error messages, when I restart the > server and open the store application, a new db folder is > created at the same level as my server. This folder contains > catalog.lck, catalog.log, and catalog.properties - no > catalog.script. The log file reads: > > CREATE USER

Re: [flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Tom Fitzpatrick
At 09:14 AM 5/26/2005, you wrote: >Can I suggest the following steps to get it working: > >stop Tomcat >create a directory called 'db' under your TOMCAT_HOME. >make sure the .script file is there >make sure your store.cfg is pointing to where it was when it shipped ( >db_path=..\\db\\ ) (the double

RE: [flexcoders] Re: creating images in a for-loop, problem.

2005-05-26 Thread Steven Webster
> > Still nuthing??! > You only posted 30 mins ago ! If I'm not mistaken, is what you are trying to achieve that given an array, called summary, you want to loop over that array and for each element in the array, you want to display an image with a label underneath it ? That being the case,

Re: [flexcoders] CFlogin, SetCredentials and the RemoteObject

2005-05-26 Thread dave buhler
I was debating if I should have my login page exist within HTML or as a sep., stand alone MXML page. I mention it because I'm pretty sure the CFC method names and service names would be visible to a decompiler and thus, visible to any user who stumbles across the Flex Admin system or has just s

[flexcoders] Re: creating images in a for-loop, problem.

2005-05-26 Thread rockmoyosa
--- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]> wrote: > Ive got a HBox in this HBox I'm placing a Canvas with an Image. I'm > building it in ActionScript with a for-loop, see code below: > > for(var i=0;i var tileCanvas:Canvas =Canvas(this._scope.tile_hbox.createChild( >

R: [flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread Francesco
I've checked (case, ...) and all seems to be correct :-(   Should I trasfer the result to a model?   Thanks Francesco -Messaggio originale-Da: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]Per conto di Abdul QabizInviato: giovedì, 26. maggio 2005 14:55A: flexcod

Re: [flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Tom Fitzpatrick
At 09:14 AM 5/26/2005, you wrote: >I'm sorry to hear there were errors in the documentation, I spent >several hours 'testing' them, please let me know what they are and I >will ammend the docs OK - (and please let me know if I'm wrong and the docs are right): In the store instructions it says: F

RE: [flexcoders] Re: cairngorm and custom authentication

2005-05-26 Thread Steven Webster
> idea. My SecureServiceLocator class can request the > credentials inside of getService() instead of implementing it's own > setUsernamePassword() method. > > What do you think? I like it... > > So are you keeping passwords unencrypted on the client ? > > For now, I am. I don't want the user

[flexcoders] creating images in a for-loop, problem.

2005-05-26 Thread rockmoyosa
Ive got a HBox in this HBox I'm placing a Canvas with an Image. I'm building it in ActionScript with a for-loop, see code below: for(var i=0;i To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROT

[flexcoders] Re: cairngorm and custom authentication

2005-05-26 Thread charged2885
--- In flexcoders@yahoogroups.com, "Steven Webster" <[EMAIL PROTECTED]> wrote: > Todd, > > > > > I added an abstract SecureCommand class which implements Responder. > > > > I like it; neat implementation, and definitely agree with you > putting this functionality into the SecureCommand base-clas

[flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Daniel Harfleet
In Tomcat '..' (atleast on all the machines we have tested on) points to the next directory up from webapps (NOT the webapp, but the webapps directory). This would be TOMCAT_HOME/db (jakarta-tomcat-5.0.25/db) in your case. to clarify: if you have your app in TOMCAT_HOME/webapps/cairngormstore t

[flexcoders] Re: Cairngorm store - still trying

2005-05-26 Thread Daniel Harfleet
Tom (and anyone else having problems with HSQLDB) HSQLDB is used in this project in its 'in-process' mode, this means that it does not run as a seperate server process as a 'normal' database would such as MySQL or Oracle. The database instance is started by the first call to getConnection in HSQL

RE: [flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread Abdul Qabiz
Check the columnName name mataches(case etc) with the on returned array? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Francesco Sent: Thursday, May 26, 2005 6:06 PM To: Flexcoders Subject: [flexcoders] WebSercices, result, Array, Dat

[flexcoders] WebSercices, result, Array, DataGrid - Problems

2005-05-26 Thread Francesco
Hi, I've a problem with my application. I call a WebService that returns as result an array--> webservice.GetHeaders.result Then I try to put the result into a dataGrid like this:

[flexcoders] Cairngorm store - still trying

2005-05-26 Thread Tom Fitzpatrick
Still trying to get the cairngorm store products to show up. I thought I had done everything right - but there are several errors in the docs and I had to do some guessing, plus working with hints from Steven and Alex from iteration2. On startup, I'm getting a couple of warnings from the server

[flexcoders] Using a drag proxy

2005-05-26 Thread digital_eyezed
Hi, I have a fully functioning drag and drop operation going on. All I want to do is add an image using the drag proxy functionality to the application. Here is the tree I drag from: And here is the List I drag to: Where do I put the code to add the drag Proxy? I have already embedded an

Re: [flexcoders] Re: Saving a Flex chart as a jpeg file

2005-05-26 Thread JesterXL
This kind of works too: http://jerryscript.hostrocket.com/flash/draw/SWFDrawing2JPEG.html Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of

[flexcoders] dynamic dataprovider for the datagrid

2005-05-26 Thread pv_rprasad
hi, this is my 2nd mail to the groups. iam trying to build a data grid such that when i expand the tree nodes my datagrid should display rows for the visible nodes and when the tree collapses the corresponding rows in datagrid must become invisible. my xml looks something like t

[flexcoders] How i can do it?

2005-05-26 Thread devis
Hi, i have a dataGrid into a panel with a controlBar. In my control bar there is a TextInput, i wish then a user press keyDown put "focus" in the dataGrid row. I have used indexof of research but don't work here a bit code function Find():Void { for(var x;x-1) { //Here i wish to s

RE: [flexcoders] cairngorm and custom authentication

2005-05-26 Thread Steven Webster
Todd, > > I added an abstract SecureCommand class which implements Responder. > I like it; neat implementation, and definitely agree with you putting this functionality into the SecureCommand base-class. > Any command which accesses secured remote objects must extend > SecureCommand. Nice. >

RE: [flexcoders] Cairngorm Confusion

2005-05-26 Thread Steven Webster
Mike, > Isn't there an article covering the topic of WHAT Cairngorm > is? How it works? Explain in plain English as to HOW the > proposed structure and included "helper files" enhances the > developers ability to create RIA's (which are scalable in nature). First of all; Cairngorm is not int

[flexcoders] Re: Manual Effect on Hbox, problem

2005-05-26 Thread rockmoyosa
--- In flexcoders@yahoogroups.com, "rockmoyosa" <[EMAIL PROTECTED]> wrote: > I'm am manually playing an effect on a HBox. The HBox moves but does > not respond on an effectEnd or effectStart. Which it normally does > when you set moveEffect in MXML. Why does the HBOX not listen!!? > > > > --

RE: [flexcoders] Manual Effect on Hbox, problem

2005-05-26 Thread Abdul Qabiz
Hi, Is your HBox inside a Canvas? Kindly make a simple but complete application and post here, so that we can see... -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rockmoyosa Sent: Thursday, May 26, 2005 2:16 PM To: flexcoders@yahoogrou

[flexcoders] Re: Drag and Drop from tree to List

2005-05-26 Thread digital_eyezed
That worked! Thanks. --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > Use the TreeDataProvider methods to get the label, > myObj[0].getProperty('label') > > > > Matt > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Manual Effect on Hbox, problem

2005-05-26 Thread rockmoyosa
I'm am manually playing an effect on a HBox. The HBox moves but does not respond on an effectEnd or effectStart. Which it normally does when you set moveEffect in MXML. Why does the HBOX not listen!!? ---Code AS public function moveMeRight(object:Object) { va

[flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-26 Thread indy_nagpal
Got it going! I was going astray while setting the "User Specified Setting". I somehow had the "Key" value set to "Schema Location" rather than "Namespace Name". Once I corrected that everything is sweet. So my settings now are: URI:[Path to]mxml.xsd Key Type: Namespace Name Ke

[flexcoders] Re: About deploying flex app in Weblogic

2005-05-26 Thread r0main
Hello, got the same problem, and a MM Gold Support...: Yet no news on that point, seems at least it will be corrected in Flex 2.0 (= a more classic deployment and jar folder), but maybe MM will publish a hot fix before that date... Cheers, r0main --- In flexcoders@yahoogroups.com, "Jesus Salvado

[flexcoders] Tree change event

2005-05-26 Thread Mika Kiljunen
Hi,   I noticed that the tree’s change event does not work as expected ( the same way as for example in DataGrid ). When a user selects a node on a tree, the tree sends change event properly, as in DataGrid. But when the user deselects (is that a word?) a node by clicking it with CTRL –