Overview #
Provides a set of textarea boxes for data entry. One textarea box for each language.
Field Type Parameters: #
Text Editor(optional) – Select the type of text editor for input.Spell Checker(optional) – Enable or disable spell checking for the textarea.Maximum length(optional) – Select the maximum length for the textarea input. The actual maximum length is determined by the database column type (e.g., TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT).
Value Processing Parameters: #
Basic usage:
{{ FieldName }}
Usage with parameters:
{{ FieldName(Limit Output, Length, Clean Braces, Clean Quotes, Language) }}
Limit Output(optional) – Limits the output text: first number of characters, first number of words, or returns the link to the first image found in the text.Length(optional) – Number of characters or words to limit the output.Clean Braces(optional) – Remove all braces from the text to prevent interference from content plugins.Clean Quotes(optional) – Remove all quotes from the text.Language(optional) – Specify the language. If not specified, the default front-end language will be used.
Example:
{{ FieldName("chars",1,true,true) }}
Pure Value (Unprocessed): #
Example:
{{ FieldName.value }}
Edit Record Parameters: #
Basic usage:
{{ FieldName.edit }}
Usage with parameters:
{{ FieldName.edit(CSS Class, Attributes) }}
CSS Class(optional) – Name or names of CSS class(s).Attributes(optional) – Optional attributes like: disabled, onclick, onchange etc.
Leave a Reply
You must be logged in to post a comment.