1
vote
3answers
20 views
Why is iconField ignored for branch nodes with the Flex Tree component?
I'm using the iconField property of the Flex Tree to dynamically set the icon that a node should use. This works fine for leaf nodes but for branch nodes it doesn't seem to respect …
0
votes
2answers
23 views
create components dynamically
Hi,
I have requirement in AdvancedDataGrid.
In Advanced Data Datagrid with columns checkbox,textfield, textarea,button,radiobutton. and ADD Button and SUBMIT Button. When i click …
0
votes
2answers
22 views
LCDS Vs BlazeDs
Hi Any one can explain the difference between the LCDS and BlazeDs. Both are supporting HTTPService,Webservice,Remoting service. So why we need BlazeDs or LCDS?
0
votes
1answer
16 views
Flex: image scale stopped working after deploy to server
I have some code to scale an image's width according to its height after the image is being loaded. It works fine on my development PC if I point to the wrapper html using local fi …
0
votes
1answer
47 views
i18n of Flex Alert.show(..) buttons
I have to change the "Yes" and "No" buttons in an Alert.show(..), to another language (Dutch, for instance).
Is there a (easy) way to do that?
I forgot to mention - I have a -loca …
0
votes
1answer
15 views
Tile inside Accordion does not resize correctly
In a Flex application I'm building I have an Accordion with a Tile component as shown:
<mx:Accordion id="accordionShoppingBasket" width="100%" resizeToContent="true">
<m …
0
votes
1answer
22 views
Flex: Make advanced data grid height of rows?
I have an ADG along with some other components in a VBox. The number of rows of items in the ADG is variable. I want the height of the ADG to be however tall it needs to be to show …
0
votes
3answers
49 views
Flex: Scale an Image so that its width matches contentWidth?
I have a dynamic layout, where an image is loaded into an HBox:
<mx:HBox ...>
<mx:Image height="100%" .../>
</mx:HBox>
only the image's height is set on th …
0
votes
1answer
58 views
Flex LinkBar: how to set a selected button’s background color?
I was able to set the text color of a selected LinkBar button by "disabledColor" style of LinkBar. Accordingly, I expect to set the background color of the selected button by "back …
0
votes
2answers
58 views
Flex GroupingCollection: Loop through the children
I am using a GroupingCollection to bind my advanceddatagrid. I have used groupingcollection to group the data by date.
Now I need to select the data in the datagrid through the co …
0
votes
2answers
52 views
HTTPService Result - checking number of items with a specified name
I have a question about HTTPService and the data it returns.
Well lets consider this XML:
<PhotoGalleryData>
<Photo>
<id>1</id>
<name> …
0
votes
2answers
70 views
Flex HBox alignment.
Hello guys.
I experimenting with Flex Styling, and i came across a alignment issue.
I have two image components inside a HBox, and the HBox inside a Canvas, which in turn is insi …
0
votes
2answers
48 views
Flex Instantiated Object - wait for creationComplete
I have a simple component I created which I instantiate in my main program like so:
newMessage = new MessageDetail();
newMessage.body.text = "Hello World";
I receive the error " …
0
votes
3answers
59 views
Flex: Is it guaranteed that code is excluded from compiled build when not reachable?
Suppose you have
private static const INCLUDE_MY_DEBUG_CODE:Boolean = false;
public function runMyDebugCode():void
{
if ( INCLUDE_MY_DEBUG_CODE )
{
callADebugFunc …
2
votes
4answers
187 views
How to export a datagrid to Excel file in Flex?
How do I export data in my datagrid to an Excel file in Flex?
Can anyone provide some examples for that? I am browsing but couldn't find out a single example of that kind.
EDIT
…
