formtastic-bootstrap icon indicating copy to clipboard operation
formtastic-bootstrap copied to clipboard

Formtastic form builder to generate Twitter Bootstrap-friendly markup.

Results 18 formtastic-bootstrap issues
Sort by recently updated
recently updated
newest added

I recently updated my application to Rails 5.0.6 and was rerunning the test suite when formtastic-bootstrap threw an error relating to the `html_safe` command. ``` Failure/Error: ActionView::Template::Error: undefined method `html_safe'...

Actions automatically add `btn` class to buttons. The thing is additional class (`btn-default`, `btn-primary` e.t.c.) is required for button to look nice. Mby default class should be `btn btn-default` and...

When i use semantic_form_for it is converting to bootstrap support but in case of semantic_nested_form_for it is not doing anything. Please reply ?

Is there any way to control the formtastic to stop creating label or customize div so that to use bootstrap we have more control over it?

Installed the gem, updated the formtastic.rb, add the CSS requirement, rebooted my server -- .. but the .label classes are still being added. Any ideas?

@jtomaszewski @mjbellantoni Do you think we're OK to do a micro bump, or do we need a minor bump?

From what i can see, a lot of discussions([example](https://github.com/mjbellantoni/formtastic-bootstrap/pull/94)) have circled the subject of [Bootstrap form-horizontal ](http://getbootstrap.com/css/#forms-horizontal) I also see a [commit](https://github.com/jtomaszewski/formtastic-bootstrap/commit/d212909bb101d78f134218d2274d3da45c02fc01) regarding this, but i cannot see any results...

In our app we're putting in a ckeditor row like so (in slim templates): ``` = f.input :description, as: :ckeditor, hint: 'For best results...', input_html: { ckeditor: { toolbar: 'mini'...

Inside a form: ``` haml = f.input :failed, as: :boolean ``` yields: ``` html Failure Text ``` Whereas I'm expecting something more like: https://github.com/twbs/bootlint/wiki/E017 which would be more like: ```...