Form Field
data class FormField(val messageId: Long, val key: String, val title: String, val inputType: FormFieldInputType, val regex: String? = null, val placeholder: String? = null, val required: Boolean, val answer: Answer? = null)
Deprecated
Deprecated as 4.19.0. Use MessageFormItem instead.
Represents a form field where users can enter values.
Since
4.14.0
See also
Constructors
Properties
Link copied to clipboard
The input type of the form field.
Link copied to clipboard
Whether this form field is submittable or not.
Link copied to clipboard
The placeholder of this form field when the input value is empty.
Link copied to clipboard
The temporary answer to this form field to store the input value before submitting. It becomes null when it is submitted.