Top "Activeadmin" questions

Active Admin is a Ruby on Rails plugin for generating administration style interfaces.

How to add custom filter to Active Admin?

Active Admin allows me to define filters that are displayed on the index page like so: ActiveAdmin.register Promo do …

ruby-on-rails ruby ruby-on-rails-3 activeadmin
Active admin install with Rails 4

I got this error when installing active admin on Rails 4 Bundler could not find compatible versions for gem "actionpack": In …

activeadmin ruby-on-rails-4
How to use ActiveAdmin on models using has_many through association?

I am using ActiveAdmin gem in my project. I have 2 models using has_many through association. The database schema looks …

ruby-on-rails ruby-on-rails-3 rubygems associations activeadmin
Adding New Admins to Active Admin

I am using devise for my users. I recently installed the rails Active Admin gem, everything is working beautifully. However …

ruby-on-rails devise ruby-on-rails-3.1 activeadmin
Rails Activeadmin - custom association select box

In my Rails application, I have the following model: class Idea < ActiveRecord::Base belongs_to :user end class User &…

ruby-on-rails ruby activeadmin
How to add a virtual attribute to a model in Ruby on Rails?

I'm working on a RubyonRails/ActiveAdmin application. My RoR version is 4.2.5 and AA version is 1.0.0. I have a model Message …

ruby-on-rails ruby ruby-on-rails-4 activeadmin
How to get ActiveAdmin to work with Strong Parameters?

Update: this question was asked before there was a solution for it already in ActiveAdmin. As Joseph states, the ActiveAdmin …

ruby-on-rails ruby-on-rails-3.2 activeadmin strong-parameters
File upload with Activeadmin Rails using paperclip

I use Active admin as my rails application backend. I want to make a file upload. How can I accomplish …

ruby-on-rails ruby activeadmin
Rails: activeadmin overriding create action

I have an activeadmin resource which has a belongs_to :user relationship. When I create a new Instance of the …

ruby-on-rails activeadmin inherited-resources
Rails 3. How to add a helper that ActiveAdmin will use?

I'm creating a helper to be used by Formtastic but I get the undefined local variable or method error. I …

ruby-on-rails ruby helpers activeadmin