Instruction
Configuration - Forms - Generic

Most fields have a field type. Different field types can be used for the custom fields.

These can be set via the "Advanced" button.

The table below explains which options are available for the available types.
It is possible that more field types are displayed that are not described in the manual. This may be because experimental or custom fields are available.

Veld type Description Parameters: Key (bold) - Value
text The base field type
integer Use field type text + parameters for validation.
  • dataFvInteger - true
  • dataFvInteger___message - "A phrase of your choice"
select

Het select veld type. Hier is het nodig een array (lijst) van waardes op te geven.

Voorbeeld in jsonlist. Hierbij is optionKey: code en optionValue: klanttype

[
  {
  "klanttype": "Prospect",
  "code": "010"
}, 
{
  "klanttype": "Klant",
  "code": "020"
}
]
  • jsonlist - Een array in JSON
  • optionKey - De kolom die als key gebruikt moet worden
  • optionValue - De kolom die als value gebruikt moet worden
  • multiple - If more than one value needs to be selected
checkbox A check box. In most cases it is more advisable to use a select box instead of a checkbox. This has to do with the nature of HTML and the storage of a checkbox. Specifically the checkbox which is empty. Separate program code must be used for this.
  • checked - true
custom In de meeste gevallen gekoppeld aan een "Tabel op maat"
date Datum
textarea Een textarea kan simpel worden gebruikt
  • editor - de editor die gebruikt wordt. "none" of "tinymce"
  • config - in geval tinymce is beschikbaar: "simple", "small", "large"
  • rows - editor none: aantal rijen
  • cols - editor none: aantal kolommen