Description:
A group for the discussion of using Active Admin.
|
|
|
build menu error in 0.5.1
|
| |
I'm attempting to create a custom set of menus in active admin, per the documentation (I think!). The following is in my active_admin.rb initialization file: config.namespace :admin do |admin| admin.build_menu do |menu| menu.add :label => "Churches", :url => "/", :priority => 0 menu.add :label => "Liaisons", :url => "/", :priority => 0... more »
|
|
No filters from enum column type
|
| |
I'm use gem enum_column3 and this column not show in filter. How to fix this problem? P.s. This is my first experience using Active Admin.
|
|
Problems with ActiveAdmin Comments from Master
|
| |
Hi I'm giving ActiveAdmin Comments another shot using the Master Branch of ActiveAdmin. Here are the initializer settings: config.allow_comments = true config.show_comments_in_menu = false config.comments_registration_n ame = 'AdminComment The last line is necessary since my app already has a Comment model.... more »
|
|
Advance form customization
|
| |
Hi! I want to heavily customize form. - Put in place editing (updates via AJAX), - add autosave (when user is editing something), - add associations (I can also do that in normal Active Admin) etc etc Right know, I have 3 different concepts. 1. Use standard form and template. Monkey patch (if required) some logic... more »
|
|
Translatable Site title
|
| |
well, the subject is self explanatory, how can i make the config.site_title variable translatable via the local files for example i'm making lawyers system in arabic and english, the site title should be displayable in both languages when changes, so it cannot be constant in single language. how to do this?... more »
|
|
Disable comments menu
|
| |
I don't know why, but i have a "Comments" menu entry in my activeadmin project. How can disable it? I'm using latest github version and comments inside some resources. Thanks in advance and excuse my very bad english.
|
|
Filter based on association's attributes
|
| |
Hi Given two models: Project * currency * has_many :payments Payment * amount * belongs_to :project On the ActiveAdmin page for payments, is there a way to add a filter by the currency of the associated project (other than adding and mirroring to a real Payment#currency column)? Thanks for your hints, -sven... more »
|
|
Using ActiveResource for models?
|
| |
Hi I have to consume a Restful Api to build a web portal. ActiveAdmin will be a perfect fit in terms of the interface. Can I use ActiveResource models rather than AR or Mongoid models? If not by default - where should I start looking as to what I would need to hack onto my ActiveResource models to allow ActiveAdmin to do its magic to... more »
|
|
undefined method for MetaSearch::Searches
|
| |
We have an admin application that was initially separate from our main application, but I'm in the process of moving it in. However I'm having an interesting issue. I have a feeling it's probably due to another gem in the project but I'm not sure which one. In the old structure which was separate filters work fine. For example when filtering... more »
|
|
|