Pagination in Ruby on Rails

Old rails has a buitl in pagination option. For example is you have to paginate @user, which is a model object for the table user def user_list @user_pages,@users=paginate(:users,:order=>’name’) end But in new version of rails, they removed the pagination option. So you need to install a plugin , which name is will_paginate You can install [...]

2 Comments , , ,

Learn Ruby on Rails

I just started ruby on rails some week back. As a programmer one should learn at least the language ruby. It is a very powerful language with a lots of different concepts and stuctures . You may know learning a programming language is very simple if you cognise any other one already . What we [...]

0 Comments , , , , , , , , , , , ,