define
Changes setting about an output. This is updated whenever it is called.
- planetext
If the 2nd argument is "yes", in the case of an HTML editor, tags and images will be removed. A default value is "no".[*vv define planetext,no]
- escape
If the 2nd argument is "yes", it will escape for JavaScripts. For example, line feed is converted into "\n". A default value is "no".[*vv define escape,no]
- syntax
If the 2nd argument is "yes", Words edited by the code editor is classified by color. A default value is "no".[*vv define syntax,no]
- comboparts
Specifies how the data of ComboBox is converted. "#picture" in a text replaces the path of a picture, and "#title" replaces a title name. A default value is "<img src="#picture">#title".[*vv define comboparts,#title<img src="#picture">]
- picture
Specifies the output method of the file registered into the file viewer. A picture and an image tag are outputted by "image", a thumbnail picture and an image tag are outputted by "thumbnail", and only a path is outputted by "text". Nothing is outputted by "none". A default value is "image".[*vv define picture,thumbnail]
- list_header
Items of an internal list is outputted as a table tag. list_header is treated as a class name of "th" tag. For exsample, If description is
[*vv define list_header head1,head2,head3]
, it is outputted as follows.
<th class="head1">(Field name 1)<th><th class="head2">(Field name 2)<th><th class="head3">(Field name 3)<th><th class="head1*1">(Field name4)<th><th class="head2">(Field name 5)<th>
- list_rows
Specifies the class name of "tr" as well as list_header.
- list_cols
Specifies the class name of "td" as well as list_header.
- list_cell
Specifies the output method of items of an internal list. At this time, "#field" is converted into the contents of the card.[*vv list_cell,<div class="cell">#field</div>]
- list_table
Specifies the class name applied to the table tag of an internal list.[*vv list_table,inlist]
- list_order
Specifies the order which items of an internal list output.[*vv list_order,parts2,parts1,parts3] <!-- It outputs in order of parts2,parts1,parts3 -->
[*vv list_order,#ASC] <!-- All are outputted in ascending order of a field name. -->
[*vv list_order,#DESC] <!-- All are outputted in descending order of a field name. -->