Mega Code Archive

 
Categories / Flex / Components
 

Bind data entered in a TextInput control to a data model

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">   <mx:Model id="userInfo">     <phoneInfo>       <phoneNum>{phoneInput.text}</phoneNum>     </phoneInfo>   </mx:Model>   <mx:TextInput id="phoneInput" />   <mx:TextInput id="zipCodeInput" /> </mx:Application>