Phoenix.HTML v2.9.1 Phoenix.HTML.FormData protocol
Converts a data structure into a Phoenix.HTML.Form
struct.
Summary
Functions
Receives the given field and returns its input type (:text_input,
:select, etc). Returns nil
if the type is unknown
Returns the HTML5 validations that would apply to the given field
Returns the value for the given field
Converts a data structure into a Phoenix.HTML.Form
struct
Converts the field in the given form based on the data structure
into a Phoenix.HTML.Form
struct
Types
Functions
Receives the given field and returns its input type (:text_input,
:select, etc). Returns nil
if the type is unknown.
Returns the HTML5 validations that would apply to the given field.
Returns the value for the given field.
Converts a data structure into a Phoenix.HTML.Form
struct.
The options are the same options given to form_for/4
. It
can be used by implementations to configure their behaviour
and it must be stored in the underlying struct, with any
custom field removed.
to_form(t, Phoenix.HTML.Form.t, atom, Keyword.t) :: Phoenix.HTML.Form.t
Converts the field in the given form based on the data structure
into a Phoenix.HTML.Form
struct.
The options are the same options given to inputs_for/4
. It
can be used by implementations to configure their behaviour
and it must be stored in the underlying struct, with any
custom field removed.