[flexcoders] Dragging a datagrid cell only?

2008-12-19 Thread Barrau Antoine
Hello, we are currently facing a technical problem and i'm wondering if any of you have already tried to do this. This is a simple thing in fact : Can you drag, on a datagrid, the content of a cell to another cell? If so, i would appreciate any example of code. Thanks a lot Antoine

[flexcoders] Character input in a form : strange issue?

2006-03-02 Thread Barrau Antoine
Hi, i'm currently experiencing a strange issue with flex 1.5 i've made the following simple test : it seems, for something i can't understand that when i'm including this sample code into my application, i can't enter any of the numbers and special character given by pressing shift or al

RE: [flexcoders] Problem with Actionscript to Java object conversion

2006-02-24 Thread Barrau Antoine
oups, i've just seen a previous post from Jason Graham giving me a possible solution (i do have static final properties in my Java class..:)) Sorry for this repost. Antoine --- Barrau Antoine <[EMAIL PROTECTED]> a écrit : - Hi, i'm currentl

[flexcoders] Problem with Actionscript to Java object conversion

2006-02-24 Thread Barrau Antoine
Hi, i'm currently experiencing a problem with the conversion of an actionscript class to a java class during a service call with Flex 1.5. I get a the following error when trying to call an update service : "The expected argument types are (myPackage.UserData) but the supplied types were (flashgat

RE: [flexcoders] Problems with dynamically generating radio button in a radiobutton group

2006-02-15 Thread Barrau Antoine
o createchild for the myGroup, just do myVbox["radioGroup"+myField.id+editable] = new RadioButtonGroup(); Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Barrau Antoine Sent: Tuesday, February 14, 2006 6:08 AM To: flexcoders@yahoo

[flexcoders] Problems with dynamically generating radio button in a radiobutton group

2006-02-14 Thread Barrau Antoine
Hi, i try to generate dynamic forms using a xml file. i have a problem with generating dynamic radio button. when i create a radioButtonGroup and several radio button having the groupName property set to the name of the previously radioButtonGroup, i can't manage to get the "change" or "click" eve

[flexcoders] Flex store services in web browser cache?

2006-02-09 Thread Barrau Antoine
Hi everyone, During my study on Flex security, i see something that bother me, and i want to know if there is anyway to disable it. We have a classic store application that use some ATG services to get a catalog of items. As we were looking in the web browser cache, we see that it contain 2 things

[flexcoders] Cairngorm Exception handling

2006-02-08 Thread Barrau Antoine
Hi, Is there any way to handle exception in a Cairngorm developped Flex application so you can trace on your application server if anything goes wrong on a flex client application? And at what level of the framework do you put your exception handler? (command? Front controller?) In fact, if anyone

[flexcoders] Problem with image and cache

2006-01-30 Thread Barrau Antoine
Hi, we are currently exeperiencing a strange issue, and i want to know if anyone have a clue on this. We're doing a store application in Flex 1.5, and we use a simple mx:image tag to display a product image. To display the image, we use a binding on a global object called selectedItem.(very basic f

RE: [flexcoders] Saving modelLocator variable in sharedObject?

2006-01-24 Thread Barrau Antoine
Here is the code for the getter and setter: public static var __workflowState : Number; public static function get workflowState():Number { return __workflowState; } public static function set workflowState(myNumber:Number):Void { //ContextMa

[flexcoders] Question about creating a rotating horizontal list on flex

2006-01-10 Thread Barrau Antoine
Hi, i'm trying to create in flex some kind of nice catalog presenting its elements in a sliding (or rotating) way, each element having a different alpha reporting to its position (the element on the center of the screen is 100% alpha, the side elements are 0, etc..). As i'm new in flex, i'm trying