Phoenix.HTML.FormField (Phoenix.HTML v4.2.1)
View SourceThe struct returned by form[field]
.
It has the following fields:
:errors
- a list of errors belonging to the field:field
- the field name as an atom or a string:form
- the parentform
struct:id
- theid
to be used as form input as a string:name
- thename
to be used as form input as a string:value
- the value for the input
Summary
Types
@type t() :: %Phoenix.HTML.FormField{ errors: [term()], field: Phoenix.HTML.Form.field(), form: Phoenix.HTML.Form.t(), id: String.t(), name: String.t(), value: term() }