CSC/ECE 517 Spring 2015/ch1b 22 SF: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
<font size="6"><b>Simple Form</b></font><br>
<font size="6"><b>Simple Form</b></font><br>


'''Simple Form <ref>https://github.com/plataformatec/simple_form</ref>'''is a Rails gem used for easily creating Rails forms.
'''Simple Form <ref>https://github.com/plataformatec/simple_form</ref>''' is a very useful gem which allows you to create forms for your Rails application. It also integrates very easily with [http://getbootstrap.com/ Bootstrap].
.


The topic write up for this page can be found [https://docs.google.com/a/ncsu.edu/document/d/1Ay5OOUkcLMC-FH61fAm3cNvB3Uyk2hJ09vHnRgqwL-k/edit here].
The topic write up for this page can be found [https://docs.google.com/a/ncsu.edu/document/d/1Ay5OOUkcLMC-FH61fAm3cNvB3Uyk2hJ09vHnRgqwL-k/edit here].
Line 49: Line 50:
=== Work with Bootstrap ===
=== Work with Bootstrap ===


Similar to [http://html5boilerplate.com H5BP] and [http://960.gs 960 Grid System], [http://getbootstrap.com/ Bootstrap] is a simple and very popular front-end framework.
Similar to [http://html5boilerplate.com H5BP] and [http://960.gs 960 Grid System], Bootstrap is a simple and very popular front-end framework.


With the following code while installing Simple Form, you can integrate Simple Form to Bootstrap
With the following code while installing Simple Form, you can integrate Simple Form to Bootstrap

Revision as of 21:48, 18 February 2015

Simple Form

Simple Form <ref>https://github.com/plataformatec/simple_form</ref> is a very useful gem which allows you to create forms for your Rails application. It also integrates very easily with Bootstrap. .

The topic write up for this page can be found here.

Simple Form

Simple form is a Rails gem used for easily creating Rails forms.

The topic write up for this page can be found here.

Introduction

Background

Rails forms made easy
Simple Form aims to be as flexible as possible while helping you with powerful components to create your forms . The basic goal of Simple Form is to not touch your way of defining the layout, letting you find the better design for your eyes. Most of the DSL was inherited from Formtastic.

Getting Start

Installation

You can use the following code to install simple_form:

gem install simple_form

But I recommend you to use the following way:
Add the following code to your Gemfile:

gem 'simple_form'

And in your Rails application root directory, run the following command:

bundle install

Run the following code to generate the simple_form into your app:

rails generate simple_form install

Work with Bootstrap

Similar to H5BP and 960 Grid System, Bootstrap is a simple and very popular front-end framework.

With the following code while installing Simple Form, you can integrate Simple Form to Bootstrap

# rails generate simple_form:install --bootstrap

You have to be sure that you added a copy of the Bootstrap assets on your application.

For more information see the generator output, out example application code and the live example app.

References

  1. https://github.com/plataformatec/simple_form
  2. http://getbootstrap.com/
  3. https://github.com/justinfrench/formtastic