Create A Table Like Structure In Flex
I want to create a form in a table like structure like we do in html. following is the basic structure i require![enter image description here][1] [1]: http://i.stack.imgur.com/H6b
Solution 1:
Use the Spark Form components.
Example (shamelessly modified from example on the help page):
<s:Formid="myForm"width="450"height="125"><s:FormHeadinglabel="My Form Title" /><s:FormItemlabel="Name:"><s:TextInputid="name" /><s:helpContent><s:Labeltext="Enter your first and last names" /></s:helpContent></s:FormItem></s:Form>
Post a Comment for "Create A Table Like Structure In Flex"