Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to Activeadmin and rails and I need some help.

I have a model that is paginated and I want to allow the user to change the pagination value or disable it completely, so it can print (to a printer) all the records (or filtered ones) for instance.

I know I can set the pagination using @per_page in :before_filter, but I can't figure out how I can change this value during execution.

To solve the problem of needing to show all the unpaginated records I defined a custom page, but in this page the filter or scope don't work so it's kind of useless.

I searched the web and couldn't find a satisfatory solution for this, how can I create a Print button in Active Admin?

How do you do when you need a print option?

Thank you

share|improve this question

1 Answer

I found a solution and I'm answering my own question for someone who has the same problem. It may not be the best solution but it works, if someone has a better way please share:

ActiveAdmin.register mymodel do
    before_filter :apply_pagination
    # other code

    index :download_links => false, :as => :table, :default => true do 
      if params[:pag].blank?
        div link_to(I18n.t("text_for_the_link"), 'mymodel?pag=1', :class => "class_for_link")
       else
        div link_to(I18n.t("print.print"), 'mymodel', :class => "class_for_link")                     
      end
      # other code
    end

    controller do
      def apply_pagination
         if params[:pag].blank?
           @per_page = 50
          else
           @per_page = 99999999                    
       end
       # other code
    end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.