Multiple Text Question Schema Properties
A question that contains multiple text input fields grouped together.
Element type: multipletext
Key properties: 3
Generation Hints
Section titled “Generation Hints”- Aliases: grouped text inputs, name fields, address fields.
- Use when: several short text inputs belong together.
- Recommended properties:
type,name,title,items.
{ "type": "multipletext", "name": "contact", "title": "Contact", "items": [{ "name": "firstName", "title": "First name" }, { "name": "lastName", "title": "Last name" }] }Key Properties
Section titled “Key Properties”- Type:
textitem[] - Default:
— - Required: Yes
Gets or sets an array of MultipleTextItemModel objects that represent input items.
colCount
Section titled “colCount”- Type:
number - Default:
1 - Allowed values:
1,2,3,4,5
The number of columns used to arrange input items. Accepts the following values: 1, 2, 3, 4, 5.
itemTitleWidth
Section titled “itemTitleWidth”- Type:
string - Default:
—
Specifies a uniform width for all text box titles. Accepts CSS values.
Shared Properties
Section titled “Shared Properties”This page lists only properties that are specific to this element type or especially important for generation.
- Use Shared Question Properties for common fields such as
name,title,description,isRequired,requiredIf,visibleIf,enableIf,readOnly,defaultValue,validators,width, and layout options. - Use Multiple Text Item for the object shape inside
items.