bootstrap_form
bootstrap_form copied to clipboard
Official repository of the bootstrap_form gem, a Rails form builder that makes it super easy to create beautiful-looking forms using Bootstrap 5.
`bootstrap_form` has grown a lot over the years, and it would be nice to be able to move around the documentation more easily. It would also be nice to tell...
Currently you can use fields_for to create a nested form like this: This way the input :street wil get the name person[address][street]. I would like that it get the name...
Relates to #502 Bootstrap uses `.invalid-feedback` elements placed after inputs to show validation messages when an input errors. However, when converting a form to use ajax, bootstrap_form doesn't provide the...
Bootstrap 4.1 introduced custom range fields that are styled similarly across all browsers. Add support for custom ranges, similar to what we have for check boxes and other custom controls....
PR #513 added a test in a new file, but Danger reported that no tests had been added. Make sure Danger correctly identifies if tests have been added.
Is it possible for `bootstrap_form` to include information on an `.invalid-feedback` element about what field it belongs to? Currently, `.invalid-feedback` elements are seemingly placed directly after ("under") the element they're...
[This issue is for discussion and to record information that may be useful to future maintainers.] This PR adds a new helper bootstrap_form_with to support the Rails 5.1 form_with helper...
It seems to us like `bootstrap_form` could provide support to make Rails forms more accessible to people with different levels of ability in sight, mobility, and other aspects of computer...
Hi, I have used bootstrap nested form like, `` `` `` When there is error on the page it will replace help span with inline error span. How to keep...
Bootstrap 4 provides four custom controls (https://getbootstrap.com/docs/4.0/components/forms/#custom-forms): - `input type="radio"` - `input type="checkbox"` - `select` - `input type="file"` The state of `bootstrap_form` v4.0 at the time of writing is: -...