Difference between revisions of "XML JForm form definitions/es"

From Joomla! Documentation

(Created page with "Joomla! {{JVer|2.5}} y más reciente suministra clase JForm para crear de forma más cómoda y flexible una gran cantidad de campos de formulario. S:...")
(Created page with "== Sintaxis ==")
Line 2: Line 2:
 
Joomla! {{JVer|2.5}} y más reciente suministra clase [[S:MyLanguage/JForm|JForm]]  para crear de forma más cómoda y flexible una gran cantidad de campos de formulario. [[S:MyLanguage/JForm|JForm]] puede crear formularios a partir de definicioens XML de formularios. Estos pueden ser archivos independientes o parte de otros archivos, en particular [[S:MyLanguage/manifest files|archivos de manifiesto]].
 
Joomla! {{JVer|2.5}} y más reciente suministra clase [[S:MyLanguage/JForm|JForm]]  para crear de forma más cómoda y flexible una gran cantidad de campos de formulario. [[S:MyLanguage/JForm|JForm]] puede crear formularios a partir de definicioens XML de formularios. Estos pueden ser archivos independientes o parte de otros archivos, en particular [[S:MyLanguage/manifest files|archivos de manifiesto]].
  
== Syntax ==
+
== Sintaxis ==
  
 
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>.

Revision as of 09:32, 15 September 2015

Other languages:
Deutsch • ‎English • ‎Nederlands • ‎español • ‎français • ‎português do Brasil • ‎العربية • ‎বাংলা

Joomla! Joomla 2.5 y más reciente suministra clase JForm para crear de forma más cómoda y flexible una gran cantidad de campos de formulario. JForm puede crear formularios a partir de definicioens XML de formularios. Estos pueden ser archivos independientes o parte de otros archivos, en particular archivos de manifiesto.

Sintaxis

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.