0
votes
0answers
10 views

How to use Rails, form_for, and Bootstrap to generate properly nested <form>

I've inherited some old Rails 2.3 code. I want to use the standard rails <%= form_for %> and <%= remote_form_for %> helpers. I also want to use Twitter Bootstrap, and have the ...
0
votes
1answer
21 views

sticky footer throws off positioning of alert messages

I am using this demo app http://twitter.github.io/bootstrap/examples/sticky-footer-navbar.html to create a sticky footer for a Rails app with Twitterbootstrap. The essential html and css is below. ...
0
votes
0answers
24 views

Application failing based on browser version

I am using Twitter Bootstrap in my Rails application. I recently started having a problem where if I called the app from Firefox, everything works fine, if I called it from my iPhone or from Chrome, ...
-1
votes
1answer
24 views

How can I add the Flat UI into Rails?

Rails n00b here and I'm just wondering if anyone can help me get the DesignModo Flat UI (free) into the assets pipeline? Do I first have to download and load Bootstrap into the pipeline? I have found ...
1
vote
1answer
25 views

Using bootstrap with radio_buttons in rails

Is it possible to use the bootstrap radio buttons i.e: <div class="btn-group" data-toggle="buttons-radio"> <button type="button" class="btn btn-primary">someValue</button> ...
-2
votes
0answers
22 views

Rails Bootstrap Icons not showing

I have a rails 3.2.13 application with Ruby 1.9.3 using twitter bootstrap. I have this symbol set installed to give me custom font/icons http://symbolset.com/icons/standard When I open the html file ...
0
votes
1answer
21 views

App name in the navbar

I am creating a sample app as a learner. How do I fix the code below to have "One Month Rails" appear on every page of my app, in the left of my navigation bar? Thank you! <div class="navbar ...
0
votes
1answer
20 views

Bootstrap Sidenav Style

Im working on a ruby app and i am trying to make a sidenav that looks exactly like the one used on the official bootstrap website as seen here: My code for the sidenav: .row-fluid .span3 ...
0
votes
2answers
48 views

Bootstrap glyphicons not showing rails app--path issue?

I'm trying to get a Glyphicon to show up using Bootstrap in a Rails app, but I can't figure out how to get it to show. I've read through several questions on here that attempt to solve this problem by ...
0
votes
2answers
106 views

A blog using Bootstrap and Ruby on rails

I've been stuck for a time now with my commenting system on my blog. I now need you help to solv the problem and push me in the right direction. I'm using Ruby on rails and the twitter open source ...
0
votes
0answers
16 views

simple_form field without label

I am working with Rails 3.2 and simple_form 2.0 and cocoon and twitter bootstrap. In nested form I need fields without labels but rest of the things(errors) as same. I tried using option ...
0
votes
1answer
35 views

Forem Groups have badges

I am trying to accomplish a system where I can put users into a group named "Moderator" and they would get a bootstrap badge with the text moderator and the color specified in the groups panel. Then ...
0
votes
2answers
29 views

Bootstrap Togglable tabs rails

I want to use the Togglable Tabs from Twitter's Bootstrap on a Rails app, but I can't make it work. Here is my app/views/pages/home.html.erb : <ul class="nav nav-tabs" id="dashboard_products"> ...
0
votes
2answers
29 views

How to use Preboot mixins in a Rails project with Twitter Bootstrap

I'm looking for a way to use the Less Preboot mixins in my Rails project. Gems Gemfile: gem "less-rails" gem "twitter-bootstrap-rails" Layout application.html.erb: <%= stylesheet_link_tag ...
0
votes
2answers
26 views

Trying to render @categories from a different controller

I am using forem and trying to render a list of all the categories (which is supplied by one controller) and should show up on every page of the forums. The problem is, I am trying to pull @categories ...
0
votes
1answer
41 views

Link Custom CSS and Javascript to Rails After Deployment

I have a Rails App it's css and js links works fine locally since I have used : <link href="assets/bootstrap.css" rel="stylesheet"> <link href="assets/bootstrap-responsive.css" ...
0
votes
1answer
24 views

escape html twice in Rails

I am using Bootstrap tooltips for displaying user generated content. But i also use the option html: true because I want to enable html in the tooltip to be able to use some formatting. Let's say i ...
0
votes
1answer
55 views

How to change bootstrap link_to color on navbar

How to change link_to color on navbar to make it look like this; <a class='brand' href='#'>PROJECT_NAME</a> so far i have .brand = link_to "PROJECT_NAME", root_path but its still ...
0
votes
2answers
26 views

Rails/Bootstrap: How do I change the black bar at the top?

Chapter 5 of railstutorial.org (http://ruby.railstutorial.org/chapters/filling-in-the-layout#top) talks about how to create a basic layout for a web site. I use it as a resource for putting a Rails ...
0
votes
1answer
24 views

How to apply bootstrap modal call to an image tag?

I've got an image display page. I want to add a modal with a larger version of the image. I have created a button according to the bootstrap instructions that does the job: <button type="button" ...
1
vote
1answer
40 views

PDFKit on Heroku with Rails 3.2.13 and Bootstrap

I'm having a very hard time getting PDFKit to work on Heroku. I have read tutorials found here, here, and here, but still cannot figure out how to get the pdf to show up correctly. I am having the ...
0
votes
1answer
43 views

twitter bootstrap with jquery input token SASS version not working correctly

I'm trying to use the twitter bootstrap sass version with jQuery input token in Ruby on Rails. I found the jQuery tokenInput bootstrap sass theme, and have added it as it says in the documentation. ...
1
vote
0answers
45 views

Added the layout links in the Header Partial File To Signup and Login and Now they don't show up on the page

All, I added the links in the header file for the users after the individual signup or login. Unfortunately, now the "Log in" or "Sign Up" buttons will not show up on the page anymore. The page has a ...
2
votes
1answer
66 views

Open new page with rails link_to and bootstrap modal

I'm having some problem to load a new page in a modal with bootstrap on Rails. Here is the important part on my eventos/index.html.erb <div id="content"> <% @eventos.each do ...
0
votes
0answers
45 views

how to wire a bootstrap modal form with a backbone based ruby on rails app

I am trying to get a bootstrap modal wired with backbone in my Rails application. Here are the relevant pieces: app/views/scenarios/_form.html.haml -- snippet .row .span4 = f.input ...
0
votes
1answer
33 views

Debugging asset pipeline approach

I've got a Rails app which uses the twitter-bootstrap-rails gem to provide Bootstrap resources. I was having a difficult time trying to add jquery ui, but that's not my question. When trying to get ...
0
votes
2answers
44 views

Heroku thinks I'm using bootstrap? Won't let me rake assets:precompile

I was originally using bootstrap for a bit of prototyping but then I removed it. Now, I'm trying to push to Heroku, but keep getting this error: Running: rake assets:precompile rake aborted! ...
0
votes
2answers
28 views

Doesn't populate the modal view

So basically, I want to populate the twitter bootstrap with the Ruby on Rails looping over the hash of records: var popup = '<div id='+ key +' class="modal hide fade" tabindex="-1" role="dialog" ...
0
votes
1answer
42 views

Twitter Bootstrap classes(grids, navs) not rendering

So I have twitter bootstrap response in my app assets stylesheets, and it shows in the head of the document from Google Chrome's dev tools like so: <link ...
0
votes
1answer
24 views

How to change a fixed layout on twitter bootstrap to fluid using ruby on rails

Im not sure on how to change my ruby on rails application to fluid. At the moment it is fixed using sass twitter bootstrap and im struggling on finding the right way to change the entire application ...
0
votes
1answer
46 views

Inline Forms Twitter Bootstrap + Simple Form + Rails

As the title suggests I'm using Bootstrap with Simple_Form. I'm trying to get :thumbnail_layout_horizontal & :thumbnail_layout_vertical on the same line but can't seem to figure it out? <%= ...
1
vote
1answer
40 views

What is the best (less code) to use angularjs and twitter-bootstrap for forms backed in rails? [closed]

I want to handle closer to 100% of my client side code with angularjs, I'm using twitter-bootstrap also, so the thing is twitter-bootstrap make me do so much html code to create forms, i like ...
0
votes
0answers
18 views

How do I set the priorities for a Bootswatch theme on my Rails site?

I was using the standard 'bootstrap-sass' gem to add Bootstrap to my site. I decided I wanted to replace the standard styles, so I downloaded a CSS file (cerulean.css) from Bootswatch.com and placed ...
0
votes
1answer
43 views

My navbar stop working correctly for Ruby on Rails - Haml

I stepped away from my computer and came back to an issue with the navbar. It was working correctly and now its not. The individual tabs within the navigational bar still work but it doesn't show what ...
1
vote
1answer
89 views

Bootstrap nav dropdown-menu only showing horizontally (Rails 3.2.13, bootstrap-sass 2.3.1.2, jquery-rails 2.2.1)

Using twitter bootstrap in a rails project, I'm aiming to get something looking like this (nice and simple, and readily achievable by putting the below code into jsfiddle to prove I'm not going ...
1
vote
2answers
55 views

Rails - Removing default stylesheets

New to rails. I'm experimenting with adding the Twitter Bootstrap CSS to my project to make my layout look nicer. However, I think some of the CSS rules from my default Rails app is interfering with ...
0
votes
1answer
27 views

Conversion of HTML into HAML : “ raw” tag

I'm very new to haml . I'm able to convert some of the basic html to haml but I coudn't find any answer for the following how to convert <%= raw(event_calendar) %> in haml .. and also say the ...
0
votes
1answer
30 views

Twitter Bootstrap Error Using Less

Following this video After generating the app, scaffolding, updating gemfile, running bundle install, and running rials server, getting ERROR. Am using the gem 'twitter-bootstrap-rails' , is ...
1
vote
3answers
83 views

Change Label to Textbox on edit hyperlink click

i am new to ruby on rails and twitter bootstrap. Accept my apologize if my question sound dumb. I am using twitter bootstrap for my site design. I have been trying to use bootstrap to change my label ...
0
votes
2answers
58 views

How to get 'id' from an open bootstrap modal?

I have a modal with id="<%= p.id %>" (the id of the post that is in the modal). I want to do something with the content of the modal when it is open (and I need to do this in the.js file). But ...
1
vote
1answer
110 views

Specifying data format in Rails for SimpleForm and Boostrap DateTime picker

I'm using the Boostrap DateTime picker gem (https://github.com/lubieniebieski/bootstrap-datetimepicker-rails) with simple form and the problem is as follows: In order to get the input field to look ...
0
votes
1answer
18 views

Rails twitter bootstrap generator trying to use couch_rest model instead of normal active record

I generated a scaffold as usual: rails g scaffold Job description:text user_id:integer finished:boolean rake db:migrate But after that, the bootstrap layout generator is trying to use ...
0
votes
1answer
48 views

Repair git -fd clean mistake ? Now seeing “cannot load such file — less”

Without understanding, I mistakenly ran git clean -fd and saw this: perrys-MacBook-Pro:pc perry_mac$ git clean -fd Removing log/ Removing public/system/ Removing tmp/ Now, when I run rails s and ...
1
vote
1answer
76 views

Make button a link to PDF file with Bootstrap

I'd like to link a pdf to a button using the bootstrap framework in Rails. For example the button would say download now and link to the PDF. I'm not concerned on how the PDF opens, just that it links ...
1
vote
1answer
42 views

Boostrap - Background does extend 100% width when resizing browser

For my rails application, I am using bootstrap. When I shrink the width of my browser window below around 900 pixels, the background stops extending the complete width of the browser with about 20px ...
-1
votes
1answer
16 views

How to set gridColumnWidth for Twitter Bootstrap in sass-rails [closed]

How can I change gridColumnWidth variable of Twitter Bootstrap in gem 'sass-rails'?
0
votes
1answer
51 views

twitter bootstrap fonts not showing in production rails

In development mode, my custom css's font using twitter bootstrap works fine. But in production mode, the font displayed is not the correct font in the css. I had done rake assets:precompile:all in ...
0
votes
1answer
69 views

How do I make Twitter Bootstrap Responsive with Rails?

I'm using the bootstrap-sass gem with my Ruby on Rails site. I would like to make my layout responsive, so I tried adding @import "twitter/bootstrap/responsive" to various files, but all I got was a ...
0
votes
1answer
43 views

How do you implement a javascript in rails views using bootstrap?

Without bootstrap it is fine, i can define in a particular rails view with a <script> $function(){ }); </script> But how do i define it in rails view with bootstrap? I've done the ...
0
votes
3answers
75 views

Bootstrap-Datepicker not working

I'm trying to use a bootstrap-datepicker for my RoR application, specifically this one. I've downloaded the js file and put it in the assets/javascripts folder then I made a single view in order to ...

1 2 3 4 5 16