Difference between revisions of "XML JForm form definitions/de"
From Joomla! Documentation
(Created page with "XML JForm Formulardefinitionen") |
(Updating to match new version of source page) |
||
Line 1: | Line 1: | ||
<noinclude><languages /></noinclude> | <noinclude><languages /></noinclude> | ||
+ | {{incomplete}} | ||
Joomla! {{JVer|2.5}} and newer supply the [[S:MyLanguage/JForm|JForm]] class to conveniently and flexibly create forms with a large amount of form fields. [[S:MyLanguage/JForm|JForm]] can create forms from XML form definitions. These can be standalone files or sections of other files, notably [[S:MyLanguage/manifest files|manifest files]]. | Joomla! {{JVer|2.5}} and newer supply the [[S:MyLanguage/JForm|JForm]] class to conveniently and flexibly create forms with a large amount of form fields. [[S:MyLanguage/JForm|JForm]] can create forms from XML form definitions. These can be standalone files or sections of other files, notably [[S:MyLanguage/manifest files|manifest files]]. | ||
Latest revision as of 03:25, 1 April 2020
This article or section is incomplete, which means it may be lacking information. You are welcome to assist in its completion by editing it as well. If this article or section has not been edited in several days, please consider helping complete the content.
This article was last edited by FuzzyBot (talk| contribs) 2 years ago. (Purge)
Joomla! 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
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.