Examples

Styles Example

Show Rails views that use inline, document-model, and external styles.

BoxModel Example

Illustrate the padding, border, and margin properties of the CSS box model.

Position Example

Show div sections positioned with relative and absolute positioning.

DivTags Example

Show how to use absolute positioning with div tags to position the links and the content.

Canvas Example

Show how to use JavaScript to draw on an HTML5 canvas.

Greeter Example

Create a scaffold project with three pages and navigation links to move between pages. In the controller, set the title and heading of each view using an instance variable.

RealEstate Example

Use CSS to style the index view of the RealEstateListings.  Also, add a method in the model to expand the abbreviations for property_type.

Hospital1 Example

Create a scaffold project with two models, Doctor and Patient. Use a seed file to populate the database tables.

Hospital2 Example

Use the same seed file as the Hospital1 Example to populate the doctors and patients tables having a one-to-many relationship. Create Doctor and Patient models, not scaffolds. Then create a controller with a view that displays the following:

  1. Displays an HTML table of patient names with his or her doctor and doctor's phone number.

  2. Displays an HTML ordered list of doctor names with nested lists of patients and patient phone numbers for each doctor.

PetPhotoUpload Example

Create a scaffold project that can upload photos.  These photos are displayed on the show view.

GetVsPost Example

In a browser, compare the HTTP actions GET and POST for transmitting information from client to server

NestedRoutes Example

If a scaffold project has two models, linked with a one-to-many relationship, convert the routes so that the secondary model routes are nested within the primary model routes.

AddAction Example

Show how to add an action to a resource-based controller. Recall that an action is a controller method that is executed.

BlogPostSite Example

Correct the errors in the views of the BlogPostSite: index, show, new, edit, _form.html.erb.

TemperatureConverter1 Example

Correct the errors in these source code files of the TemperatureConverter1 Example project: input.html.erb, display.html.erb, convert_controller.rb, convert.scss, routes.rb.

TemperatureConverter2 Example

Similar to the TemperatureConverter1 example, but a database table is added to record all of the temperature conversions. The name of the person performing the conversion is also recorded.  FormTagHelper methods are used for the form and controls.

TemperatureConverter3 Example

Same as the TemperatureConverter3 Example, except that FormHelper methods are used instead of FormTagHelper ones.

School Examples

Use an enrollments table to implement a many-to-many relationship between the Student and Course models using three methods:

  1. School1: Use two one-to-many relationships with an enrollments table.
  2. School2: Use a many-to-many relationship with a courses_students table.
  3. School3: Use a many-to-many relationship with an enrollments table using the :through option. This combines features of School1 and School2.

Poem Example

Display text from a file on a view:

LinkIcons Example

Use hyperlink icons instead of text hyperlinks:

LikesSite Example

Use hyperlink icons instead of text hyperlinks:

Display the dogs&owners photos in reverse chronological order (most recent first):
To change:

Hospital3 Example

Similar to the Hospital2 Example: display three ordered lists of information: (a) doctors, (b) female patients, (c) male patients. Use ActiveRecord methods to select and sort the information.

BlogPostSite2 Example

Add login authentication to a scaffold-based project:

CustomLogin Example

Add a custom login authentication system to a scaffold-based project:

EmployeeRoster Example

Set up a self-referential join with methods that obtain the manager and array of subordinates for a given employee:

Depot1 Example

Create an online sales depot with models Product, Customer, ShoppingCart, LineItem:

ValidationErrors Example

Set up the machinery to display validation errors for a non-scaffold-based controller:

JQuery Example

Ten mini-examples that show how to dynamically the content and styles of views through JavaScript, jQuery, and CoffeeScript client-side programming:

HideTableCells Example

8 mini-examples that show how to dynamically the content and styles of views through client-side programming:

AjaxTime Example

Use Rails AJAX to update the time with a partial page refresh. The time is displayed using a Rails partial.

HighlightFocused Example

Use jQuery to highlight the input control that is in focus using jQuery.

MiniTwitter Example

Use a Connection model to connect followers with users. You can use this example to help you with Project 4. Just substitute photos for comments.

LoginRegistration Example

Allow user to register to obtain a login, instead of entering the login and password with a seed file. The password must be entered a second time in a verification text field.