[flexcoders] Activate Component (enable)

2012-06-08 Thread Davidson, Jerry
I have a form that includes a component. The form includes selection criteria and a search button. When the user clicks the search button, I want to enable the component and populate a grid of the results of the search. Taking baby steps, the first thing I want to do is the enabling. Search

Re: [flexcoders] Activate Component (enable)

2012-06-08 Thread Alex Harui
Why wouldn’t you set enabled=true on the button click? On 6/8/12 6:56 AM, Davidson, Jerry jerry.david...@illinois.gov wrote: I have a form that includes a component. The form includes selection criteria and a search button. When the user clicks the search button, I want to enable the

RE: [flexcoders] Activate Component (enable)

2012-06-08 Thread Davidson, Jerry
I think I've found a solution that I'll pass on. UserAA has a bindable Boolean variable that is used to set a property in the component. That property is bound to the enabled property of the container. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

[flexcoders] IconItemRenderer to show image??

2012-06-08 Thread markflex2007
Hi, I am doing a flex mobile project project. I want to show a image list with the code , why I can not show the images in the list. I am sure the data is right. Please help me. i am not familiar how to use IconItemRenderer to show image. s:List id=itemList width=100% top=10 bottom=10

RE: [flexcoders] Activate Component (enable)

2012-06-08 Thread Davidson, Jerry
I couldn't see how to get to the property from the button. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Friday, June 08, 2012 11:56 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Activate Component (enable) Why wouldn't

Re: [flexcoders] IconItemRenderer to show image??

2012-06-08 Thread Srinivas Sandur Madhu Murthy
Use SWFLoader instead of BitmapImage and see whether it works Sent from my iPhone On Jun 8, 2012, at 11:21 AM, markflex2007 markflex2...@yahoo.com wrote: Hi, I am doing a flex mobile project project. I want to show a image list with the code , why I can not show the images in the

Re: [flexcoders] Activate Component (enable)

2012-06-08 Thread Alex Harui
Assuming the button and ting you want to enable are in the same MXML file a typical set up looks like mx:Button label=”enable text search” click=”criteria.enabled = true” / mx:TextInput id=”criteria” enabled=false” / Even more common is the use of checkboxes for enabling mx:CheckBox