Text Field
When you're building forms, use Bullet Train's Field Partials for your form fields. They DRY-up all the presentation logic without needing a third-party dependency like Formtastic.
Read much more about them in the extensive developer documentation.
Read much more about them in the extensive developer documentation.
Samples
Basic
1.1ms
600 allocs
View Source
<%= render 'shared/fields/text_field', form: form, method: :text_field_value %>
With Icon
2.0ms
607 allocs
Error Text
I am help text
View Source
<%= render 'shared/fields/text_field', form: form, icon: 'Test', method: :text_field_value,
other_options: { label: 'New Label', hide_label: true, help: 'I am help text', error: "Error Text", icon: 'fal fa-sign-out ti ti-close' } %>
Options
Name | Required | Type | Default | Description |
---|---|---|---|---|
form |
ActionView::Helpers::FormBuilder |
Reference to the form object |
||
method |
String |
Attribute of the model |
||
options |
Hash |
{} |
Options passed directly to the underlying Rails form field helper. |
|
other_options |
Hash |
{} |
Additional options for things like hiding labels, displaying specific error messages, etc. |
|
other_options[:icon] |
String |
Display an icon. |
||
other_options[:label] |
String |
Display a specific field label. |
||
other_options[:hide_label] |
Boolean |
false |
Hide the field label. |
|
other_options[:help] |
String |
Display a specific help string. |
||
other_options[:error] |
String |
Display a specific error string. |