Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: HTML | Size: 0.64 KB | Hits: 61 | Expires: Never
Copy text to clipboard
  1. <form>
  2.  <table>
  3.   <tr>
  4.    <td class="label">Label to normal field</td> <td><input type="text" name="some_field"></td>
  5.   </tr>
  6.  
  7. // Starting display group
  8.  </table>    // Added in display group decorator (closing current table)
  9.  <table>     // Opening table for display group
  10.   <tr>
  11.    <td class="label">Field #1</td> <td><input type="text" name="field1"></td>
  12.   </tr>
  13.   <tr>
  14.    <td class="label">Field #1</td> <td><input type="text" name="field1"></td>
  15.   </tr>
  16.  </table>    // Closing display group's table
  17.  
  18.    <tr>
  19.    <td class="label">Label to normal field #2</td> <td><input type="text" name="some_field2"></td>
  20.   </tr>
  21.  </table>
  22. </form>