Enables rendering of HTML configuration properties with support for inserting tokens represented by the selectable values defined by the property. Inserted tokens are placed in curlery braces as {value} and are suitable for processing via $core_v2_language.FormatString().
Supported Data Types
html
Scripted Extension Configuration XML
<property id="propertyId" labelResourceName="nameResource" descriptionResourceName="descriptionResource" dataType="html" template="core_v2_customTokenizedHtml" rows="1" columns="40" />
Plugin Configuration C#
var property = new Property
{
Id = "propertyId",
LabelResourceName = "nameResource",
DescriptionResourceName = "descriptionResource",
DataType = "html",
Template = "core_v2_customTokenizedHtml",
Options = new NameValueCollection
{
{ "rows", "1" },
{ "columns", "40" }
}
};Options
| Name | Description | Default | Options |
|---|---|---|---|
| rows | The number of rows to show. If greater than 1, a source or rich editor will be used (dependent on the value of enableRichEditing). | 1 | |
| columns | The number of columns to show. | 40 |