我想知道如何使用分页(will_paginate)对表格列进行排序,我已经有了分页但是我不知道如何对表格进行排序,即使它有一个分页,我就是这样的需要甚至有一个分页,当你对你想要的列进行排序时,它会将你想要排序的相应列排序为一个ID,它应该从第1页升序或降序到其他页面,直到最后,即使你在页面例如4,当我对ID进行排序,例如从降序到升序(100 - > 1135),不仅在该页面中,而且它将对所有列出的数据进行排序......
我应该在控制器或帮助器以及我的表格中添加什么内容?
谢谢,希望有人会回答这个问题,
index.html.erb
<table class="patchtable tablesorter"> <thead>
<th>ID</th>
<th>Summary</th>
<th>Module</th>
<th>Target</th>
<th>Category</th>
<th>Priority</th>
<th>Status</th>
<th>Assigned</th></tr>
<%= will_paginate @patches, :url => '/admin/patches', :align => "center", :params => {:controller => '/admin/patches', :action => nil, :order => @filter.filter_hash} %> <%= page_entries_info @patches, :entry_name => 'item' %>
我的控制员:
@patches = Admin::Patch.all(:conditions => filter_hash).paginate(:per_page => Admin::Patch.per_page, :page => params[:page])
我该怎么做,添加或其他工作正常,请回复..