Re: [flexcoders] RadioButton as DataGrid item editor

2010-06-24 Thread Akshar Kaul
can you share the code. Akshar Kaul On Thu, Jun 24, 2010 at 01:26, Dave Glasser dglas...@pobox.com wrote: It seems like it should be simple, but it's a nightmare. I'm using Flex 3.3. The items in my dataProvider have a Boolean property. I want only 1 item to have this property set to

RE: [flexcoders] Copying complex objects in ActionScript

2010-06-24 Thread Gregor Kiddie
IIRC, all the objects in the graph that you are trying to clone need to have remote aliases if you want them to be created properly...

Re: [flexcoders] error code 1120: Access of undefined property

2010-06-24 Thread Tom Chiverton
On Thursday 24 Jun 2010 04:26:00 you wrote: import myComponents.MyLoginForm; Did you create this file too ? -- Tom Chiverton Helping to carefully fashion high-end real-time applications as part of the IT team of the year 2010, '09 and '08

[flexcoders] Re: setting the border thickness on a Spark mx.controls.VBox ?

2010-06-24 Thread bhaq1972
Or you might want click the Use Flex 3 compatibility mode checkbox under properties / compiler --- In flexcoders@yahoogroups.com, Peter DeHaan pdeh...@... wrote: If you're using Flex 4, I'd probably use the s:BorderContainer instead. It gives you a lot better control over the border

Re: [flexcoders] Copying complex objects in ActionScript

2010-06-24 Thread Oleg Sivokon
I would rather implement a clone() function in the objects I want to clone (just like Event.clone() or XML.copy() or BitmapData.clone()). This gives you most control of what / how they are cloned with less side effects.

[flexcoders] Re: Text Effect in Flex+Moving from Bottom to Top

2010-06-24 Thread valdhor
You could use an auto scrolling Text Area. Something like... http://blog.flexexamples.com/2008/11/27/auto-scrolling-a-textarea-control-in-flex/ http://blog.flexexamples.com/2008/08/26/programmatically-scrolling-a-textarea-control-in-flex/ You may need to modify those examples to get the

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread valdhor
This looks like the perfect use case for an Advanced Datagrid with a Grouping Collection. --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Is possible to display any Collection within another Collection using anyone flex component? Ex.: I have a

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread Jesus Saad
Hummm, but how can I iterate my usersWO subcollection in Datagrid to put these items in multiline label? Do you have an idea? --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: You can use a multiline label Function to display your text. In your label function simply append \n as

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread Jesus Saad
Hi, i'm sorry, but I can`t understand this solution for my case... Can you explain better how can I display the items in subcollection? --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: This looks like the perfect use case for an Advanced Datagrid with a Grouping Collection.

[flexcoders] unloadable Springactionscript Modules

2010-06-24 Thread Christoph Guse
Hi List, I have a big problem in my current application development. I want to create a modular app which is able to load modules. As a special feature the app shall have a SpringActionscript application context, each module has an own SpringActionscript application context and the parent

[flexcoders] Re: Yahoo TimeInput component as Item Editor

2010-06-24 Thread Amy
--- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: After more testing, I have an update: I have fixed it and created a new problem. I removed a keyUp event handler, which formats the text value of the TimeInput and sets my editorDataField correctly. Now I only listen for

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-24 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: It seems like it should be simple, but it's a nightmare. I'm using Flex 3.3. The items in my dataProvider have a Boolean property. I want only 1 item to have this property set to true, and all others set to false. So I

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread valdhor
Do a google search for flex advanceddatagrid example and you will find a lot of examples. --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Hi, i'm sorry, but I can`t understand this solution for my case... Can you explain better how can I display the items in

[flexcoders] Scrolling a Popup in IE leads to UI distortion

2010-06-24 Thread Latha
Hi Flex Experts, I am Latha, I am relatively new to the group. I need your help in fixing a problem in the application I am working on. We have a pop-up and it may or may not have vertical scroll bars. When there is a vertical scroll and we scroll fast, the UI gets distorted. Some parts of it

Re: [flexcoders] Re: RadioButton as DataGrid item editor

2010-06-24 Thread Dave Glasser
--- On Thu, 6/24/10, Amy amyblankens...@bellsouth.net wrote: What logic are you using to transfer the value of the RadioButtonGroup to the appropriate properties? None, actually. I would expect the DataGrid to handle that, since it is creating the RadioButtonGroup and my code would not have

[flexcoders] Flex 4 Loading Run time CSS

2010-06-24 Thread method_air
Is it possible to load run time CSS with Flex 4/Spark. Loading Flex 3 style modules with the StyleManager is throwing an error, is there a Flex 4 way to do it? Thanks, Philip

[flexcoders] ItemEditor | maxCharacters

2010-06-24 Thread ilikeflex
Hi I have datagrid and i am using the default itemeditor. I want to limit the charatcres the user can enter. I have implemented itemEditBegin method on datagrid. private function onitemEditBegin(event:DataGridEvent):void { var datGrid:CheckBoxDataGrid=(event.currentTarget as

[flexcoders] Steps to get Flex 3.5 application to run in Android emulator?

2010-06-24 Thread Greg Hess
Hi All, I have a non-Air Flex 3.5 application that I would like to test on the Android emulator. I have joined the prerelease program however the instructions tell me to install AIR extension into CS5 or Flex 4 and I have neither. Do I need to upgrade to Flex 4 or can I do this with Flex 3? Is

[flexcoders] Re: Is possible to display any Collection within another Collection using anyone fle

2010-06-24 Thread tntomek
Just to implement the column labelFunction and check out the SDK documentation. When you debug it will become apparent --- In flexcoders@yahoogroups.com, Jesus Saad jesus.s...@... wrote: Hummm, but how can I iterate my usersWO subcollection in Datagrid to put these items in multiline label?

Re: [flexcoders] Flex 4 Loading Run time CSS

2010-06-24 Thread Alex Harui
All modules must be on the same version. Flex 4 cannot load CSS style modules compiled with Flex 3. Recompile the modules in Flex 4. On 6/24/10 12:00 PM, method_air loudj...@hotmail.com wrote: Is it possible to load run time CSS with Flex 4/Spark. Loading Flex 3 style modules with the

Re: [flexcoders] ItemEditor | maxCharacters

2010-06-24 Thread Alex Harui
Editor is created after itemEditBegin. The recommended practice is to subclass the itemEditor. Maybe cheat by using focusIn event. On 6/24/10 12:36 PM, ilikeflex ilikef...@yahoo.com wrote: Hi I have datagrid and i am using the default itemeditor. I want to limit the charatcres the