FormFieldInputConfig

data class FormFieldInputConfig(val defaultChecked: Boolean? = null, val defaultCountryCode: String? = null, val defaultValue: String? = null, val descriptiveText: String? = null, val fileUploaderConfig: FormFileUploaderFieldConfig? = null, val isArray: Boolean? = null, val maxValue: Double? = null, val minValue: Double? = null, val name: String? = null, val placeholder: String? = null, val readOnly: Boolean? = null, val required: Boolean? = null, val step: Double? = null, val type: String, val value: String? = null, val valueMappings: FormValueMappings? = null)

Constructors

Link copied to clipboard
constructor(defaultChecked: Boolean? = null, defaultCountryCode: String? = null, defaultValue: String? = null, descriptiveText: String? = null, fileUploaderConfig: FormFileUploaderFieldConfig? = null, isArray: Boolean? = null, maxValue: Double? = null, minValue: Double? = null, name: String? = null, placeholder: String? = null, readOnly: Boolean? = null, required: Boolean? = null, step: Double? = null, type: String, value: String? = null, valueMappings: FormValueMappings? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val defaultChecked: Boolean? = null

Specifies whether a field has a default value.

Link copied to clipboard

The default country code for a phone number.

Link copied to clipboard
val defaultValue: String? = null

The default value for the field.

Link copied to clipboard
val descriptiveText: String? = null

The text to display to describe the field.

Link copied to clipboard

The configuration for the file uploader field.

Link copied to clipboard
val isArray: Boolean? = null

Specifies whether to render the field as an array. This property is ignored if the dataSourceType for the form is a Data Store.

Link copied to clipboard
val maxValue: Double? = null

The maximum value to display for the field.

Link copied to clipboard
val minValue: Double? = null

The minimum value to display for the field.

Link copied to clipboard
val name: String? = null

The name of the field.

Link copied to clipboard
val placeholder: String? = null

The text to display as a placeholder for the field.

Link copied to clipboard
val readOnly: Boolean? = null

Specifies a read only field.

Link copied to clipboard
val required: Boolean? = null

Specifies a field that requires input.

Link copied to clipboard
val step: Double? = null

The stepping increment for a numeric value in a field.

Link copied to clipboard

The input type for the field.

Link copied to clipboard
val value: String? = null

The value for the field.

Link copied to clipboard

The information to use to customize the input fields with data at runtime.