Difference between revisions of "XML JForm form definitions"

From Joomla! Documentation

(Added information)
(Corrected "on" to "one")
Line 5: Line 5:
 
The root element for JForm definitions is usually <code><config></code>. <onlyinclude>Under the <code><config></code> element, one or more <code><fieldset></code> elements may appear, each representing a HTML <code><fieldset></code>, a group of form fields visually grouped together. The optional <code>name</code> attribute can be used on the <code><fieldset></code> to define the name of the fieldset, as in <code><fieldset name="params"></code>.
 
The root element for JForm definitions is usually <code><config></code>. <onlyinclude>Under the <code><config></code> element, one or more <code><fieldset></code> elements may appear, each representing a HTML <code><fieldset></code>, a group of form fields visually grouped together. The optional <code>name</code> attribute can be used on the <code><fieldset></code> to define the name of the fieldset, as in <code><fieldset name="params"></code>.
  
Each fieldset must contain on or more <code><field></code> elements, each representing a single [[form field]] with a label. See [[Standard form field types]] for a list of allowed form field types and example XML form field definitions.</onlyinclude>
+
Each fieldset must contain one or more <code><field></code> elements, each representing a single [[form field]] with a label. See [[Standard form field types]] for a list of allowed form field types and example XML form field definitions.</onlyinclude>
  
 
[[Category:JForm forms]]
 
[[Category:JForm forms]]
 
[[Category:Specifications]]
 
[[Category:Specifications]]

Revision as of 17:48, 19 February 2012

Joomla! 1.6 Joomla 1.6 and newer supply the JForm class to conveniently and flexibly create forms with a large amount of form fields. JForm can create forms from XML form definitions. These can be standalone files or sections of other files, notably manifest files.

Syntax[edit]

The root element for JForm definitions is usually <config>. Under the <config> element, one or more <fieldset> elements may appear, each representing a HTML <fieldset>, a group of form fields visually grouped together. The optional name attribute can be used on the <fieldset> to define the name of the fieldset, as in <fieldset name="params">.

Each fieldset must contain one or more <field> elements, each representing a single form field with a label. See Standard form field types for a list of allowed form field types and example XML form field definitions.