Formex v0.6.6 Formex.Field
Summary
Types
Functions
Defines the Formex.Field struct.
:name- a field name, for example::title:struct_name- a name of a key in your struct. By default the same as:name:custom_value- custom function that extracts a value that will be used in view:type- a type of a field that in most cases will be the name of a function fromPhoenix.HTML.Form:value- the value from struct/params:required- is field required? Used only in template, not validated:validation- validation rules to be passed to a validator:label- the text label:data- additional data used by particular field type (eg.:selectstores here data for<option>’s):opts- options:phoenix_opts- options that will be passed toPhoenix.HTML.Form
Creates a new field.
type is the name of function from
Phoenix.HTML.Form.
Options
:label:required- defaults to true. Used only by the template helper to generate an additional.requiredCSS class.:struct_name- a name of a key in your struct. Defaults to thenamevariable:custom_value- use this, if you need to change value that will be used in view. For example, field ofMoney.Ecto.Typetype casted to string returns a formatted number, when we may need a raw number. In this case we should use:form |> add(:money, :text_input, custom_value: fn value -> if value do value.amount end end):phoenix_opts- options that will be passed toPhoenix.HTML.Form, for example:form |> add(:content, :textarea, phoenix_opts: [ rows: 4 ])
Options for <select>
:choices- list of<option>s. Named “choices”, not “options”, because we don’t want to confuse it with the rest of optionsform |> add(:field, :select, choices: ["Option 1": 1, "Options 2": 2])form |> add(:country, :select, choices: [ "Europe": ["UK": 1, "Sweden": 2, "Poland": 3], "Asia": [...] ]):without_choices- set this option to true if you want to render select without any<option>s and provide them in another way (for example, using Ajax-Bootstrap-Select).It disables choices rendering in
Formex.Ecto.CustomField.SelectAssoc.:choice_label_provider- used along with:select_without_choices.When form is sent but it’s displayed again (because of some errors), we have to render