search for: all_show

Displaying 1 result from an estimated 1 matches for "all_show".

Did you mean: acl_show
2008 Jul 14
1
will_paginate paginates all instead of subclass
...name like ?'', "%#{search}%"], :order => ''name'' end end And my controller for CallsController with index action class CallsController < ApplicationController before_filter :login_required, :only => [ :new, :create, :show, :index, :list, :all_show, :edit, :update, :delete ] def index @calls = Call.search(params[:search], params[:page]) end my view page for index is <% form_tag calls_path, :method => ''get'' do %> <p> <%= text_field_tag :search, params[:search] %> <%=...