Tagged Questions
0
votes
1answer
164 views
How to align datagrid position when it is dynamic components
I'm generating components dynamically by following code:
var vbox:VBox = new VBox();
var btn:Button = new Button;
var hb:HBox = new HBox;
var dg:DataGrid = new DataGrid();
var dc:DataGridColumn = ...
0
votes
2answers
563 views
How to reach elements of an inline component in flex?
I have a problem with inline components. I want to reach an inline component from another one.. From the first component, i want to change "enable" value of the linkbutton named "Add" which is in ...
0
votes
2answers
598 views
Add custom style property to MXML Custom Component
I have a Custom Component that has a couple of Canvas with some background colors assigned to them. Now i have hard coded the colors, i want to move them to an external css file.
So i would like to ...
0
votes
1answer
193 views
Passing variables to child component, and getting NaN returns
I have a component being called within a repeater. Within the call, i'm passing several variables to the component. All of them work fine except for one named totalSpan... which is returning a NaN ...
0
votes
2answers
671 views
Setting variables during component initialization in Flex
I am loading a component which makes a HTTPService call to get data that will then be used to set certain variables in the component. I make the HTTPService call in an init() function (for the ...
0
votes
1answer
528 views
Flex 3 Accessing IncludeInLayout in Component Instance
I've got a Flex 3 question about using includeInLayout with a component instance.
So, to access the instance of my component, I used something like this:
var _myCard:Card = this["card"+cardNum];
...
0
votes
1answer
152 views
Function Call inside of Component
I want to call an App function inside a (I know about the Component scope already).
What I mean is this:
<mx:Script>
<