Overview #
Provides a multi-line text area for data entry, with customizable text editors, spell checking, and text output processing options.
Field Type Parameters: #
Text Editor
(optional) – Choose the type of editor to use for the text area. Options include no editor or a rich text editor.Spell Checker
(optional) – Enable or disable spell checking for this text area field.Maximum length
(optional) – Defines the maximum length of the text. Actual limits depend on the selected text type and the Joomla/WordPress default utf8mb4 character set (4-byte UTF-8 encoding).
Value Processing Parameters: #
Basic usage:
{{ FieldName }}
Usage with parameters:
{{ FieldName(Limit Output, Length, Clean Braces, Clean Quotes) }}
Limit Output
(optional) – Limit the output of the text field to the specified number of characters or words, or retrieve specific elements like the first image.Length
(optional) – Number of characters or words.Clean Braces
(optional) – Remove all braces ({ and }) from the text to prevent content plugins from running.Clean Quotes
(optional) – Remove all quotation marks from the text.
Example:
{{ FieldName(50,1,true,true) }}
Pure Value (Unprocessed): #
Example:
{{ FieldName.value }}
Edit Record Parameters: #
Basic usage:
{{ FieldName.edit }}
Usage with parameters:
{{ FieldName.edit(CSS Class, Attributes, Editor Width, Editor Height) }}
CSS Class
(optional) – Name or names of CSS class(s).Attributes
(optional) – Optional attributes like: disabled, onclick, onchange etc.Editor Width
(optional) – Editor Width in Pixels or %Editor Height
(optional) – Editor Height in Pixels or %
Example:
{{ FieldName.edit("","",100%,300px) }}
Leave a Reply
You must be logged in to post a comment.