Skip to content

Multiple Text Question Schema Properties

A question that contains multiple text input fields grouped together.

Element type: multipletext Key properties: 3

  • 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" }] }

  • Type: textitem[]
  • Default:
  • Required: Yes

Gets or sets an array of MultipleTextItemModel objects that represent input items.

  • 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.

  • Type: string
  • Default:

Specifies a uniform width for all text box titles. Accepts CSS values.

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.