0
votes
1answer
30 views

Datepicker won't Display

I have a Rails project using simple_form and I can't seem to get the date picker to work (using the Bootstrap Datepicker gem https://github.com/Nerian/bootstrap-datepicker-rails. I have tried what's ...
0
votes
1answer
32 views

Rails: Simple_form on one line?

I am making a form with simple_form, and I'm trying to get all inputs on the same line (I want all elements to be inline horizontally on the rendered page). I have googled the problem for some hours, ...
0
votes
2answers
26 views

Incorporating Bootstrap Form Helpers into simple_form

I am trying to implement a select menu with countries, which then filters a select menu with states once a country is selected. I use SimpleForm and Bootstrap so the following seems to suit me ...
0
votes
1answer
47 views

Simple form label class

I want to use simple-form and bootstrap to generate a horizontal form with 2 rows. The first row should have two inputs side by side - one for first name with one label and the second row should have ...
1
vote
1answer
87 views

Bootstrap (2.3.1) + SimpleForm (2.1) inline label for radio button group

I'm trying to create inline radio buttons which also has its label inline (at the very left). As I state in the title, using Bootstrap and SimpleForm. My code looks like this: <%= f.input ...
0
votes
1answer
50 views

rails-bootstrap-toggle-buttons in simple_form bootstrap not working

please forgive my newbieness here - I am trying to get the gem rails-bootstrap-toggle-buttons to work in the rails app. I searched all over and can't figured it out. I have tried wrappers, but can't ...
0
votes
2answers
87 views

How to position submit button on same line as input with Simple Form and Bootstrap?

Using Simple Form and Bootstrap, I would like to have the following appear in-line instead of having the submit button below the input select. <%= simple_form_for :select_rollout, :html => ...
0
votes
1answer
75 views

simple_form error messages do not go away

I'm using simple_form with twitter bootstrap on Rails. Everything works great, except when showing live validations in a form-inline class. My code for the form is: <%= simple_form_for @message, ...
1
vote
1answer
144 views

Trouble using simple_form between input and =f.input

this is the screenshot of below slim simple_form form. this shows properly. But this gives me type nil error. = simple_form_for :identity, :url => '/auth/identity/register' do |f| h2 Create ...
1
vote
0answers
301 views

Rails, simple_form, bootstrap and datepicker

I'm trying to add date field to my form. So I added bootstrap-datepicker-rails gem, all required css and javascript. Everything is showing ok, but when I actually choose the date in the calendar and ...
0
votes
1answer
77 views

simple_form config wrapper not found

I've been trying to put my 'remember me' checkbox in line in my vertical form (using simple_form) and I am getting the error ActionView::Template::Error (Couldn't find wrapper with name ...
0
votes
2answers
157 views

Rails, Twitter Bootstrap, Simple Form, Heroku - Odd error when using “:wrapper => :prepend do” to get an add-on span

I have the following code in a form partial: <%= f.association :client %> <%= f.input :url, :wrapper => :prepend do %> <%= content_tag :span, "http://www.", :class => ...
0
votes
0answers
37 views

having some form elements float

I'm have a Rails app that uses simple_form with Twitter bootstrap for a nested form (Question model with has_many Answers). The question form uses a partial to render the answer fields. Each answer ...
2
votes
1answer
98 views

Displaying paperclip content_type errors in simple_form

I'm having an issue where the validation errors on my model's attachment field are not showing up in the view when trying to upload an invalid file type. My model is setup as follows: ...
0
votes
1answer
108 views

Form submit stops working in Rails 3 app with inclusion of Bootstrap

I have a simple_form in a Rails 3 application that works fine if I do not include Bootstrap, but when I add bootstrap, the submit button seems to do nothing. The only thing showing up in the Firebug ...
0
votes
1answer
123 views

Simple_Form and Bootstrap : input as date how to specify different width for month and year?

I have a date field in a simple_form like this : <%= f.input :dob, as: :date, start_year: Date.today.year - 12, end_year: Date.today.year - 110, discard_day: true, ...
0
votes
1answer
81 views

simple_form Tab switching by radioboxes

I have RoR application with simple_input and bootstrap. Application have a page, that consists of 3 tabs and 3 radioboxes. In dependence of radiobox value I render 3 different partials. How can I ...
0
votes
1answer
204 views

Bootstrap popovers on Rails simple_form inputs

I'm trying to show some popovers in a form I am currently building. They should appear when the user has focus on a specific field, but I can't quite manage to do so, here is what I got (in Slim): ...
0
votes
1answer
371 views

Passing data-mask bootstrap variable into simple_form input?

I'm customizing a simple_form gem-enabled form for which I'd like the phone number field to have a datamask from http://jasny.github.com/bootstrap/javascript.html#inputmask My original code is: ...
1
vote
1answer
204 views

Unique Nested Child Identifiers for Tab Links using Twitter Bootstrap & Cocoon

I have a Ruby on Rails application with Twitter Bootstrap tabs within a partial, and multiple instances of that partial can be added by the user using Simple Form and Cocoon. In order for the tab ...
2
votes
1answer
327 views

simple_form and Twitter Bootstrap and input-append code

I'm trying to use the input-append feature of Twitter Bootstrap. However, I want to try and keep my code cleaner with the simple_form. <div class="control-group string required"> <label ...
4
votes
5answers
1k views

Styling file upload button for simple_form_for with Bootstrap in Rails 3

Using simple_form_for, Bootstrap and Rails 3. In a form: <%= f.input :upload, label: 'PDF file:' , input_html: {accept: ('application/pdf') } %> I don't know how I'd style this so that the ...
1
vote
2answers
400 views

Override bootstrap with class and simple_forms

I have the following CSS class: .table-price-item { vertical-align: middle; margin-bottom: 10px; font-size: 0.875em; padding-right: 5px; } And the following input in simple_forms: <%= ...
0
votes
1answer
1k views

Add datepicker with rails 3.2.11, simple_form and bootstrap

I am trying to implement datepicker in my simple_form much as has been covered here: How do i write a cleaner date picker input for SimpleForm I create the custom class: # ...
0
votes
1answer
81 views

Issue with bootstrap-sass and simple_forms

I have a bug in my app but I do not know where to look. When I refactor my forms with the simple_form format like: <%= simple_form_for([@schedule.doctor, @schedule], :html => { :class => ...
0
votes
0answers
381 views

Client side validation in bootstrap modal

I have client side validation,but some why it doesnt works in twitter bootstrap modal window. If i put my form just somewhere else then modal, then it works like a charm. Is there something i've ...
0
votes
1answer
146 views

Rails simple form different styles for different forms

I use the simple-form gem in a rails 3.1 project together with twitter bootstrap. I have several form views which all look fine. But now I like to style the text input field in one of the forms so it ...
0
votes
0answers
144 views

Rails simpleform bootstrap how can I DRY this form view?

Here is the desired output http://jsfiddle.net/kingawesome/stUfG/ In my search form I want to place min/max fields so people can specify a min and/or max, and I want it to look like that. I have this ...
0
votes
2answers
114 views

What's a better way to combine two fields before saving to db in a Ruby on Rails app?

I have to select a date and a time for something. I'm using simple_form, and twitter bootstrap with the datepicker and timepicker gems. First, I wasn't able to customize the form generators enough to ...
5
votes
1answer
1k views

Bootstrap + simple form checkbox grids

I have a list of 20+ tags I want to present in a 4 column checkbox grid but I'm not quite sure what the cleanest way to do it is. I have the following form: = simple_form_for(@fracture) do |f| = ...
2
votes
1answer
379 views

Rails 3 + simple form + bootstrap Radio and checkbox as button w/ toggle function

I'm trying to get my radios and checkboxes to work as buttons w/ the toggle function as seen on twitters bootstrap page. link! I've somehow managed to get those buttons to appear and function w/ the ...
2
votes
0answers
137 views

How to use simple_form and formtastic (active_admin) side by side?

I have a rails project, which uses the active_admin gem. This active_admin depends on the formtastic gem. However, I want to use simple_form instead of formtastic in my app (in all parts outside ...
4
votes
1answer
414 views

simple_form w/ Bootsrap check box

I'm using simple_form w/ Bootstrap and I would like to have my "Remember me" check box be inline to the left of the label, as in the Twitter Bootstrap docs: ...
0
votes
1answer
84 views

How to display one field next to other field use simple_form and bootstrap

My form currently have two fields, dropdown list and an input field. This is my code for form: <div class="offset3 span6"> ... # other code not relevant <div id="topic_questions"> ...
2
votes
1answer
579 views

client side validations is not working on simple form for devise

Client side validations are working perfectly on my other simple_forms. Code I am using in other forms is: <%= simple_form_for @group, :validate => true , :html => { :class => ...
1
vote
2answers
2k views

Display inline errors with simple_form in a Bootstrap Ajax modal

I've found similar StackOverflow questions here and here but still can't get this to work. I'm using Rails 3.2.8, SimpleForm 2.0.4, and Twitter Bootstrap 2.1.1 (via the bootstrap-sass gem 2.1.1.0). ...
0
votes
1answer
180 views

Twitter bootstrap “lead” not working with simple_form

I'm using Twitter Bootstrap along with simple_form in Rails. For some reason I cannot get the Bootstrap class="lead" to function. I see in the rendered HTML some additional classes which I assume come ...
1
vote
1answer
670 views

How to change simple_form to use bootstrap prepended inputs

I'm use Rails 3.2, simple_form and it's default bootstrap generator. I want to use one of the Bootstrap "appended and prepended" form elements in my layout. How do I modify the simple form input to ...
1
vote
0answers
437 views

Twitter Bootstrap + SimpleForm: appending an icon to a form field doesn't show error messages

I want to append an icon to a SimpleForm form field using Twitter Bootstrap. Here is the solution that I found in another SO question: <div class="input-append date" id="birthday-picker" ...
5
votes
2answers
1k views

SimpleForm+ClientSideValidations+bootstrap - Validation is not occuring on the form- all inputs are accepted

I am using the SimpleForm, ClientSideValidations, and ClientSideValidations-SimpleForm gems in a RoR application. I can render the form into the modal beautifully, however when the input loses focus ...
4
votes
3answers
2k views

Simple_form how to make accept terms checkbox inline

<p><%= f.input :terms, :as => :boolean, :label => false, :boolean_style => :inline %> Accept <%= link_to "Terms of use", terms_path,:remote => true %> and <%=link_to ...
0
votes
1answer
305 views

Grouping checkboxes for individual boolean values using css, twitter-bootstrap, and simple_form

Can you please help me format this simple_form? I am using this form: <%= simple_form_for @my_model, :html => { :class => 'form-horizontal'} do |f| %> <%= f.error_notification %> ...
0
votes
2answers
140 views

Is it possible to append arbitrary text to to a checkbox in SimpleForm?

Using SimpleForm, I want to append a line of text to a checkbox. Is it possible to do this? I've tried, but so far no luck. f.input :remember_me, label: "Remember me", # Would be nice if you could ...
3
votes
1answer
1k views

How do I apply the bootstrap radio button styling using simpleform?

I am using simpleform for twitter bootstrap and I am trying to style my radio buttons using the data-toggle function so that my buttons look like the radio buttons seen here: Twitter bootstrap ...
0
votes
2answers
139 views

Flash messaging is being named incorrectly when using bootstrap and simple form

I'm not sure why this is happening, but when I submit a form successfully in my rails app it is adding a div class of an error to my successful flash message. I'm using this code for my flash ...
0
votes
3answers
518 views

Rails 3: Changing input box length

Using Rails 3 with Twitter Bootstrap and Simple_form, I am having issues changing the length of the input box in this field: <div class="input-prepend input-append"> <%= f.input :price, ...
0
votes
1answer
304 views

simple_form select-field turns into input-field after validation

I'm using simple_form combined with twitter boostrap for my rails application. And I've one problem that stops me. <%= f.input :title %> <%= f.input :url %> <%= f.input :tag_list, ...
0
votes
1answer
249 views

Simpleform + bootstrap: getting rid of the ellipsis and hover text for required fields

I recently upgraded simpleform and bootstrap, which I'm using together. My required fields now have ellipses underneath the asterisks, and when users hover, they get a tooltip. How can I customize or ...
1
vote
3answers
2k views

how to make simple_form work with twitter-bootstrap-rails; form in general in bootstrap

1) How to build forms using simple form and twitter-bootstrap-rails so that they show cool bootstrap style validation errors? 2) How to build forms in twitter-bootstrap-rails so that they show cool ...
0
votes
1answer
170 views

Render radio as button/image simple_form

I'm using SimpleForm and was able to create a list of radios. Is there a way that I can render them as buttons or images? I did some search and tried this: - f.collection_radio_buttons(:category, ...

1 2