[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

will_paginate problem

Edou Suilen

5/22/2009 2:22:00 PM

Hi,
I have a problem using paginate: i made the paginate to work, but it
only shows results in the first page, whenever i click on the second or
others it doesnt show results, and i have more then 2 results for that
search.


this is the code

controller:

def searchnome
nome = params[:nome]
@posts = Post.paginate(:all,:conditions => ["name=?",
"#{nome}"],:page => params[:page] ,:per_page => 2 )
end


view :


<% @posts.each do |post| %>
<tr>
<td><a>Name : </a></td>
<td><%=h post.name %></td><br />
<td><a>Title : </a></td>
<td><%=h post.title %></td><br />
<td><a>Content</a></td><br />
<td><%=h post.content %></td><br />
</tr><br />
<% end %>
<br />
<%= will_paginate @posts %>



i am a bit new in ruby, any help is welcome :)
--
Posted via http://www.ruby-....