Hi
I am using classic pagination plugin and  in my view i am using link
to list items by updated at
<td><%= link_to "list by id", {:action =>
"list_by_update"}%></td>
controll goes
def list_by_update
		@item_pages, @items = paginate :item, :per_page => 10, :order_by =>
''updated_at''
		render_action ''index''
end
So if i use this kind of system it gives a error:
 Couldn''t find Item with ID=list_by_update
 so i changed action to method call but it won''t paginate the list.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---