Skip to content Skip to sidebar Skip to footer

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:Form id="myForm" width="450" height="125">
    <s:FormHeading label="My Form Title" />
    <s:FormItem label="Name:">
        <s:TextInput id="name" />
        <s:helpContent>
            <s:Label text="Enter your first and last names" />
        </s:helpContent>
    </s:FormItem>
</s:Form>

Solution 2:

 <div id="header_block">
      ...... Header_block Contents
    </div>
   <div id="wrapper">
      ...... Entire Page
    </div>

css

   #header_block
     {
           position:fixed;
           width:100%;
           float:left;
      }

Post a Comment for "Create A Table Like Structure In Flex"