I am getting the the output in Flex from PHP as…
appSes = new ArrayCollection (ArrayUtil.toArray(event.result));
I need the value to be stored in textInput…
<mx:TextInput id="keyword" styleName="glass" width="100%"/>
How to ??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can join the array and display it in the keyword text field
But appSes must be a class property and declared as [Bindable] for this to work, or you can just assign it after you create the new ArrayCollection
I hope this is what you wanted