↧
How to install Ruby on Rails with Sybase anywhere adapter on Windows
Installing Rails on Windows and using Sybase as db for the first time is a pain. So I thought to write a how to: 1) Download latest stable release of Ruby from http://rubyforge.org/frs/?group_id=167...
View ArticlePagination in Ruby On Rails using will_paginate plugin
We do pagination in Rails by using its built in paginate method in our controller def display_data @display_data_pages, @display_data = paginate(:location_data, :conditions => ["loc.updated_at <...
View ArticleNot binding your selection list to a particular model in Rails
In Rails, we use collection_select helper to display values from a particular model using a drop down but it is generally tied to a particular model, i.e. if we look at the generated html then we see...
View Article