2011/09/29

will_paginateのオプション

rails3に移行してkaminariを使っている人も多かも知れませんがwill_pagenateで各種パラメーターを変更する方法。

@@pagination_options = {
:class => 'pagination',
:prev_label => '« Previous',#前ページリンクの文言
:next_label => 'Next »',#次ページリンクの文言
:inner_window => 4,#現在ページと「...」の間のリンク数
:outer_window => 1,#「...」とnext_labelの間のリンク数
:separator => ' ', # リンク間の区切り文字
:param_name => :page, #ページ数のパラメーター名
:params => nil, #遷移先URLに付加するパラメーター
:renderer => 'WillPaginate::LinkRenderer',
:page_links => true,
:container => true
}
変更したい所でオーバーライドしてあげればOK

0 件のコメント: