Top "Activeadmin" questions

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

My css file is overridden due to activeadmin

First I have created an active_admin css file as app/assets/stylesheets/active_admin.css.scss /* active_admin.css.…

ruby-on-rails-4 activeadmin
Show booleans in Active Admin as 'Yes' and 'No'

How can I make active admin to show "Yes" and "No" instead of "true" and "false". I tried to change …

ruby-on-rails internationalization activeadmin
Active Admin - refresh second drop down based on first drop down, Ruby on Rails

I am using Active Admin Gem on Ruby on Rails. I have a form in which i have selected category …

ruby-on-rails ruby sqlite drop-down-menu activeadmin
Activeadmin and Formtastic: form not responding to :size

I am trying to format a form and the text fields respond to some methods, and not others. I can …

ruby-on-rails-3 formtastic activeadmin
Filter on parent object attribute in ActiveAdmin

I'd like to be able to filter an object based on an attribute of it's parent: class Call < ActiveRecord::…

ruby-on-rails activeadmin
Skip before filter with Active Admin

I am using devise and recently added active admin, which created a separate table of admin_users to keep admins. …

ruby-on-rails devise ruby-on-rails-3.1 before-filter activeadmin
ActiveAdmin custom views which retain the ActiveAdmin layout

I have a rails 3 app with the ActiveAdmin gem. My goal is to make a custom controller rendering in custom …

ruby-on-rails ruby activeadmin
Activeadmin Formtastic custom input

I have a simple app, which has three models Assessment, Question and AssessmentQuestion In Assessment i have the association like, …

ruby-on-rails activeadmin formtastic
How to override default_scope in ActiveAdmin in Rails

In a resource registered with ActiveAdmin, I have the following default_scope defined for the model: default_scope :order => …

ruby-on-rails activeadmin default-scope
How to Properly Configure Rails 4.1 Enums in ActiveAdmin

I've got a Rails 4.1 app in which I use an enum to represent the privacy level of an object. In …

ruby-on-rails enums activeadmin