Formtemplate

Templating System : Designer Guide : Tag Reference : Formtemplate

Summary

The formtemplate tag is used to embed a dynamic form in a template. The elements of the form must be created in the Tcl script associated with the template.

Usage

  <formtemplate id="add_user">
  <table>
  <tr>
    <td>First Name</td><td><formwidget id="first_name"></td>
  </tr>
  <tr>
    <td>Last Name</td><td><formwidget id="last_name"></td>
  </tr>
  </table><br>
  <input type="submit" value="Submit">
  </formtemplate>

Notes