Flex - How to find Datagrid Cell Object
I have datagrid in my page and I want to change particular cell background color. I don't want to use itemrenderer. Is there any alternate ? ...
I have datagrid in my page and I want to change particular cell background color. I don't want to use itemrenderer. Is there any alternate ? ...
I want to be able to populate the tool tip array for a HSlider via a web service. Below is my code and all I'm doing here is populating anotherArray in the init() function from the arrayValues array just to test that much. However when I launch the application anotherArray contains only "null" and not the rest of the data. Any ideas? ...
Hello community, I embedded a swf file in my application <mx:SWFLoader source="@Embed(source='mod/VideoModule.swf')" width="50" height="50" id="loader" creationComplete="initLoader()" /> now with the help of the flex documentation I wanted to interact with my loaded swf by creating a SystemManager [Bindable] public var loadedSM...
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundImage="images/Login_01.jpg" verticalCenter="0" horizontalCenter="0" width="800" height="600" horizontalAlign="center" verticalAlign="middle" > I need to align the background image in center, but its not working... its going towards to left for different re...
I have to put 2 numeric stepper components in one column of a datagrid. I suppose I need to write my own item renederer code for that. How to write a code for putting 2 numeric stepper components in one coulmn of datagrid. The 2 numeric steppers would work as time (Hour and Min) components. I cannot use readily availabel time components...
Hello, I have an AdvancedDataGrid(ADG) bound to an ArrayCollection. ArrayCollection is populated from my Oracle database. Now, the records I have in the database are in millions and sometimes, based on the worst case criteria by the user, I can get around 10,000 records. Now, as this collection is bound to the ADG, it tries to render a...
I've got a subclass of AdvancedDataGrid showing a tree-like data structure. How can I, given the index returned by calculateDropIndex, get the item at that index? After reading through reams of code, it seems like the least terrible way is: var oldSelectedIndex:int = this.selectedIndex; var mouseOverIndex:int = this.calculateDropIndex...
I've been trying to embed some svg files into an AS3 project using the Embed meta tag. For example: [Embed(source = "assets/image.svg")] private var Image : Class; However when displaying these files as Sprites only some of the gradients are surviving the embeding process. From what I've found simple (2 step) horizontal gradients se...
Hi Guys, is it possible to convert htmltext in object and move that object in textarea? Regards, Shivang ...
Hello Community, I have build a module in Flex that I call myModule, this module has a method myMethod. Now I use the ModuleManager to load this module. mod = ModuleManager.getModule("myModule.swf"); mod.addEventListener(ModuleEvent.READY, modEventHandler); mod.load(); now I want to access the method (customComp as myModule).myMeth...
Hi guys, i am working on a line chart on flex which enable me to view the progress of data according to the year. I have tried using a slider to filter but it doesn't seemed to work. any help please? ...
We need to create Adobe Air application in quick time with lot of emphasis on cool UI effects. We thought of using UI components, skins by a third party due to time limitations. Can anyone direct me to good places. I've only found ScaleNine which is close to our expected standard. ...
Hi All. I am a new bee to flex. What i am trying to do is to generate and save the layout design which nothing but canvas to a pdf format at the server. Currently i am able to display the pdf in browser (see the function below:) but cannot save the file at the server. private function continueToPdf():void{ myPDF = new PDF( Orienta...
I have put one combobox in flex application. I need combobox with multiple item selection can you please help me, how to select multiple items in combobx in adobe flex 3 ...
I am working with Flex 3.0. I want Drag and Drop functionlity with DataGrid.I want to Drag one Cell Data and drop to another cell.Cell may be in the same/different row and same column / different column. I dont want to drag and drop whole row / column. ...
Hello Community, I have the following problem, I have a flex application that works as a frontend in a client-server-application. In my application I have two sliders and a chart that moves when I drag the sliders, now when I have the following positions slider 1: 10 slider 2: 20 a request is sent to the server and the response back ...
I'm looking for an open-source or commercial Adobe Flex module to do user Login, Registration, and License management. The back-end can be either on my site (PHP and MySQL) or secure 3'rd party site. User Interface would have the following: Register (new user) Log-in (registered user) Purchase a new license (logged-in user) Apply the...
I'm working though the Adobe "Flex in a Week" video training series, and I've reached Exercise 9, which deals with creating a remote service call. Up til this point, the data source and images have been local assets (located in src/assets in my Flash Builder project). I access the room list by this: <mx:HTTPService id="rooms" url="ass...
My Flex application does a remote call to weborb to save some data from Flex. When this data is saved, a service is called on another server. All this time Flex is waiting for an answer. Is it possible to call this service (on the other server) and not wait for an answer. I have tried to call the service asynchronous but all this does i...
Is it possible to put an itemrenderer on the DataGrid itself rather than a datagridcolumn? I could only find examples for datagridcolumn. I want a generic itemrenderer on all the items in a datagrid... ...