<s:form_table>

Provides a two column form table along with various `<ft_*>` tags available for the individual rows and form fields, as shown in the below example. A few quick notes regarding the tags below:

  • All `<ft_*>` tags below are available as single form field tags without the "ft_" suffix (eg. `<s:textbox>`). The "ft_" suffix simply wraps the form field in a two column table row with a label in the left column.
  • All form field tags require a "name" attribute.
  • All form field tags allow an optional "value" attribute.
  • All form field tags allow an optional "label" attribute, which is the text displayed in the left column. If no "label" attribute is defined, the titlecase version of the "name" attribute is used.


The below example quickly showcases all form fields available via Syrus tags.


Example HTML


<s:form_table> <s:ft_textbox name="username"> <s:ft_textbox name="password" type="password"> <s:ft_seperator label="Additional Info"> <s:ft_select name="status"> <option>Active</option> <option>Inactive</option> <option>Pending</option> </s:ft_select> <s:ft_boolean name="subscribe" value="1" label="Would you like to receive updates?"> <s:ft_amount name="amount" label="Donation"> <s:ft_date_interval_selector name="frequency" value="M1"> <s:ft_date_selector name="time_to_call" required="1"> <s:ft_time_selector name="time_to_call" required="1"> <s:ft_phone name="phone"> <s:ft_textarea name="about_me"> <s:ft_label label="Some Label" value="Value within right column"> <s:ft_submit value="create" label="Register Now"> </s:form_table>

Example Output

Additional Info
Yes No
$
,
:
Value within right column