J1.5:Spacer parameter type
From Joomla! Documentation
(Difference between revisions)
(Added infromation about using the default attribute.) |
AmyStephen (Talk | contribs) (XML Parsing Error - changed ” to ") |
||
| Line 10: | Line 10: | ||
You can replace the basic horizontal line with a title which can be used to group parameters. For example, | You can replace the basic horizontal line with a title which can be used to group parameters. For example, | ||
| − | <source lang="xml"><param type="spacer" default= | + | <source lang="xml"><param type="spacer" default="Advanced parameters" /></source> |
Note that you can also include HTML markup but it must be encoded. For example, to put the text into bold you can use: | Note that you can also include HTML markup but it must be encoded. For example, to put the text into bold you can use: | ||
| − | <source lang="xml"><param type="spacer" default= | + | <source lang="xml"><param type="spacer" default="<b>Advanced parameters</b>" /></source> |
<noinclude> | <noinclude> | ||
=== See also === | === See also === | ||
* [[Standard parameter types|Full list of standard parameter types]] | * [[Standard parameter types|Full list of standard parameter types]] | ||
[[Category:Components]][[Category:Modules]][[Category:Plugins]][[Category:Templates]][[Category:Development]]</noinclude> | [[Category:Components]][[Category:Modules]][[Category:Plugins]][[Category:Templates]][[Category:Development]]</noinclude> | ||
Revision as of 23:48, 22 September 2008
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
The spacer parameter type provides a visual separator between parameter field elements. It is purely a visual aid and no parameter value is stored.
- type (mandatory) must be spacer.
- default (optional) is a string which will be used instead of the <hr /> that is inserted by default.
Example XML parameter definition:
<param type="spacer" />You can replace the basic horizontal line with a title which can be used to group parameters. For example,
<param type="spacer" default="Advanced parameters" />Note that you can also include HTML markup but it must be encoded. For example, to put the text into bold you can use:
<param type="spacer" default="<b>Advanced parameters</b>" />