Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

simple form gem doesn't work

I'm working on a project need some guidance. I created a project with multiple tables added bootstrapv3.3.6 to make the framework look nice and now I want to install gem simple form to make my forms look nice. It shows I install simple form right and everything works but its not showing the nice form display after typing simple_form_for <%= simple_form_for(@deal) do |f| %> nothing happens. Can anyone help me correct my issue.

Thank you

1 Answer

Kevin Korte
Kevin Korte
28,149 Points

What does your code look like?

Simple form gem works, I actually have problem after installing simple gem with bootstrap. I'm trying to convert this piece below to bootstrap for a friendly look. I would appreciate any help <div class="field"> <%= f.label :location_id %><br> <%= f.collection_select :location_id, Location.all, :id, :location_name %> </div>