Packages

package textarea

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Textarea(id: String = "", name: String = "", rows: Int = 5, value: Option[String] = None, describedBy: Option[String] = None, label: html.components.Label = Label(), hint: Option[html.components.Hint] = None, errorMessage: Option[html.components.ErrorMessage] = None, formGroup: FormGroup = FormGroup.empty, classes: String = "", autocomplete: Option[String] = None, attributes: Map[String, String] = Map.empty, spellcheck: Option[Boolean] = None, disabled: Option[Boolean] = None) extends Product with Serializable

    Parameters to GovukTextarea Twirl template

    Parameters to GovukTextarea Twirl template

    id

    the id of the textarea element

    name

    the name of the textarea element

    rows

    height of the textarea in rows

    value

    optional initial value of the textarea

    describedBy

    optional aria-describedby attribute for the textarea element

    label

    optional Label for the control

    hint

    optional Hint for the control

    errorMessage

    optional ErrorMessage to display

    formGroup

    additional CSS classes/attributes/etc. to apply to the form group

    classes

    optional additional CSS classes to apply to the textarea

    autocomplete

    optional autocomplete attribute

    attributes

    optional additional HTML attributes to apply to the textarea

    spellcheck

    optional spellcheck attribute

    disabled

    optional disabled attribute

Value Members

  1. object Textarea extends Serializable

Ungrouped