Rails Admin is a simple CRUD engine for managing data. It was originally ported from MerbAdmin to Rails 3 and has been expanded since.

learn more… | top users | synonyms

0
votes
1answer
19 views

Rails 3.2.12 + rails_admin = database configuration does not specify adapter issue

I'm trying to install rails_admin on mssql 2005 Rails 3.2.12 ruby 1.9.3 tiny_tds (0.5.1-x86-mingw32) activerecord-sqlserver-adapter (~> 3.2.0) rails g rails_admin:install gives me an ...
0
votes
0answers
13 views

Generate reports from data stored in non rails mongodb

I have a system that have to generate reports from data stored in mongodb. The collections are likely very unstructured and containing some serialized data. What could be the approach to generate a ...
-2
votes
0answers
18 views

missing pagination in rails_admin view

Need some idea on this issue. I do not see pagination link on any of the rails_admin index page for models. There is no error in the log or firebug console. I have gone through rails_admin wiki. I ...
0
votes
0answers
11 views

RailsAdmin DSL - Show all fields, with only one read_only

In order to make a model attribute read only in the rails_admin panel you must do something like this: config.model Style do field :review_count do read_only true end end The ...
0
votes
0answers
19 views

Why do rails_admin belongs_to fields fail after a certain number of records?

So, I've got a Show model and an Artist model. On the Rails Admin edit page for a Show, the Artist field shows up fine. It works correctly until I reach a certain number of Artists. Somewhere ...
0
votes
0answers
15 views

rails_admin navigation hide model does not work

I have one model that I want to hide from Navigation on the left of rails_admin but it does not work. (I still want to access it, just want to hide it from the panel, so exclude does not count) I ...
0
votes
1answer
38 views

Using rails_admin with MongoDB

I've never used MongoDB and am working with someone else's code, trying to use the rails_admin gem. When I run rails g rails_admin:install, I get the following log: - Hello, RailsAdmin installer ...
0
votes
0answers
19 views

mongoid admin with hash and array field types

I'm using rails_admin with mongoid but seems this gem has no support for editing hash/array field types. it just put the content crashed inside a textarea. anyone knows an admin tool that have ...
1
vote
0answers
18 views

How to create or modify actions in rails admin

I do not find any way in order to modify the behaviour of the existing methods in rails_admin. I am using rails 3.2 and integrated with PostgreSql. I want to modify the behaviour of one of my method ...
1
vote
2answers
75 views

RailsAdmin configure from multiple engines

I have rails app, which has muptiple engines users, companies and etc. #main_app: /config/routes.rb Rails.application.routes.draw do mount RailsAdmin::Engine, at: 'admin', as: 'rails_admin' ...
0
votes
1answer
27 views

Source Reflection Errors with has_many :through

I'm attempting to create a system where my site's users can favorites pages. Those pages have two types, either clubs or sports. So, I have four models, associated as such: User Model: class User ...
0
votes
1answer
59 views

Rails_admin customisation - How to use layout in a custom controller?

I have this custom controller: class DownloadsController < ApplicationController layout 'layouts/rails_admin/application' def index end end I want to use the default rails_admin layout. But I ...
0
votes
1answer
30 views

rails_admin table of has_many in the show?

I would like to show a related has_many set of objects in the show view of the parent object as a table. Currently the has_many items are just being shown as a list separated by commas. How can I ...
0
votes
0answers
25 views

request.path (and url_for) seem to be incorrect

I created a simple dropdown in my view which uses a query string parameter to set the quarter in my app. %select(id="qtr_select" onchange="location.href=this.options[this.selectedIndex].value;") - ...
0
votes
0answers
44 views

Displaying other model attributes in the list view of rails_admin

I realize that the purpose of rails_admin is supposed to essentially be a model admin tool, but I would like to have a list view for a model and include attributes of associated models in the list of ...
0
votes
0answers
30 views

Boolean toggle using rails_admin on list view

I have a basic rails_admin application and would like to be able to toggle a boolean value in the list view of rails_admin. For example, I have a scale model with an attribute 'activated'. When I log ...
0
votes
0answers
21 views

Conditional read only on a field

It seems like it should be possible to pass in a conditional in place of the true/false that "read_only" is expecting for a field, however that doesn't seem to work. Is there a way to do a ...
0
votes
1answer
67 views

No route found, even though there is that route specified in routes.rb (RailsAdmin conflict, I think)

I just added CanCan authorization to RailsAdmin and it is when I access /admin as an unauthorized user, that I get this error: ActionController::RoutingError at / No route matches ...
0
votes
1answer
23 views

Rails Admin Form Errors

I have a form for movies in rails, and one of the columns is called year. In my rails form it is displayed as such <%= f.collection_select :year_id, Year.all, :id, :year %> </div><br ...
0
votes
1answer
37 views

Authenticate rails_admin with admin attribute

I want to be able to just let the users that have an admin attribute set to true to access rails_admin. So, if a user has the is_admin attribute to true, they can access the rails_admin interface. I ...
0
votes
0answers
42 views

rails_admin how to make a table name singular

I am using rails_admin. My model is: class Info < ActiveRecord::Base set_table_name "info" end But in rails_admin It shows as Infos. How can I do it? Thanks
9
votes
1answer
161 views

Is there a way to add an “Edit HTML” button to bootstrap-wysihtml5 when integrating with Rails_Admin?

The Rails_Admin wiki explains how to integrate with bootstrap-wysihtml5 which is incredibly easy. However, I'd like the wysihtml5 widget to have the "edit as html" button. Is this possible?
0
votes
0answers
38 views

Filters and sorting by has_many relationship in RailsAdmin

I would like to by able to filter or sort by data in Rails Admin by the data in a has many through relationship. Is this possible? I currently am able to add a 'checkmark' in the list view if the ...
0
votes
0answers
18 views

Scoping association in RailsAdmin

I'm trying to scope an association so that users can't see reminders that were already sent when editing a relationship. I do howerver, want them to be able to see them in the 'show' view, just not in ...
0
votes
0answers
33 views

Rails_admin not loading javascripts in development

I have a problem with configuring rails_admin. I have everything setup, and it shows me CRUD's for my models, however, it doesn't load any javascripts. It loads application.js, but it doesn't include ...
0
votes
0answers
13 views

How do I inherit classes from another gems in Rails?

I'm developing an app in Ruby on Rails and I'm using Piggybak to create an e-commerce suite. It uses RailsAdmin. I'm trying to configure a model created by Piggybak in the RailsAdmin interface ...
0
votes
0answers
58 views

Log out button links to the wrong url

I have a rails app that I only use as rails_admin to manage files used by a flash application. My routes.rb file can be summarized as follows: MyApp::Application.routes.draw do devise_for :users ...
0
votes
0answers
32 views

Manipulate and current path in carrierwave object (RailsAdmin and MiniMagick)

I had an issue with image cropping and mini magick, and then found this post stating that the method manipulate! won't work if the object doesn't respond to current_path. ...
1
vote
1answer
57 views

Rails Admin gem installed properly but missing the admin folder

As the title explains I've added the rails_admin gem but it's missing the app/admin folder with the admin configurations. But the app is integrated and works fine with the gem: I've added resources on ...
0
votes
0answers
25 views

Show a nested model by default in RailsAdmin

How would I go about showing a nested resource by default when editing an entry in RailsAdmin? Currently it exists as a button that you have to click to show the contents.
0
votes
0answers
91 views

Can't send attributes through RailsAdmin custom action form

I am trying to set up a custom crop action with Rails Admin. I have the action set up, but am having an issue passing the cropping coordinates to save the cropped image. I want to pass the 'crop_x', ...
1
vote
1answer
103 views

Can't update user in Rails_Admin for and model with belongs_to :user

I have 2 scenarios but both resolve to the same result. Both scenarios involve trying to update records via Rails_admin with both models having a "belongs_to :user" association. Scenario 1: I need to ...
0
votes
0answers
89 views

Association scoping for new/unsaved records in Rails_admin

In the Rails_admin wiki, they describe how association scoping can work: config.model Team do field :players do associated_collection_cache_all false # REQUIRED if you want to SORT the list as ...
0
votes
2answers
50 views

Understanding CanCan Ability and Users

I have Rails Admin with CanCan support in my rails app. I'm confused on one issue though. How does CanCan know what user is signed in? For example, my users can have different roles and through CanCan ...
1
vote
0answers
95 views

rails_admin has_many through with extra field

I have 2 models. User and Project. And there is a many_to_many relation with and extra position field between them. I can't see that extra field on rails_admin edit page. How can add that field to ...
4
votes
1answer
165 views

How to integrate acts-as-taggable-on to RailsAdmin?

Is someone integrate acts-as-taggable-on to RailsAdmin? I'm trying rails_admin_tag_list but it's not working for me. My environments: **Gems included by the bundle: * actionmailer (3.2.13) * ...
3
votes
1answer
55 views

Preventing Certain Users from Deleting Records in Rails Admin

I have Rails Admin installed which is working great. However I have a problem. Only admins can sign into Rails Admin and there are two types of admins. The first type of admin can have access to ...
0
votes
0answers
29 views

rails_admin cancan abilities not loaded first time

I'm using RailsAdmin, this time with CanCan! I've built my Ability Model and everything looks nice. Except for this problem: When the user logs in for the very first time (I'm using Devise), for some ...
0
votes
0answers
31 views

Rails_admin routes not appearing

I have several plugins that extend rails_admin but these actions do not appear in my routes Routes for RailsAdmin::Engine: dashboard GET / ...
1
vote
1answer
136 views

Showing model associations in the views of rails_admin

By default my model associations show up in the 'Add New' tab of rails_admin. However, if I modify the rails_admin.rb file and use config.model to customize what fields appear in the view, it ...
0
votes
1answer
200 views

Redirecting to custom action after save in Rails Admin

I have been working with Rails Admin, and I want to customize the redirect after the create and update actions for a model. I created a new plugin and I have it set up in the backend. I can click ...
0
votes
0answers
107 views

rails_admin without devise

I'm having hard time getting rails_admin to work without devise. I tried https://gist.github.com/Overbryd/1068094 as well removing all the devise related code from my user model and routes However, ...
0
votes
1answer
56 views

Rails_admin & view image at list action

Ruby 1.9.3 Rail 3.2.9 rails_admin 0.4.5 All my images are stored on disk. I would like to show their thumbnails on list action. How can i do that? There is no a field for storing images in ...
0
votes
1answer
46 views

rails_admin arbitrary open modal forms

Hi I'm using Rails Admin and I need to open arbitrary modal forms on certain models. To make it simple I would like to have a link which once clicked opens a modal form. I though it was just a matter ...
1
vote
1answer
75 views

undefined method `rails_admin_controller?' for any controller

I've put check_authorization unless: :rails_admin_controller? in ApplicationController and get NoMethodError: undefined method 'rails_admin_controller?' for any controller. I've already set up ...
2
votes
1answer
255 views

Authenticate using Devise and Rails Admin for particular routes

I use Rails Admin and Devise for admin and user model. I have added one column "admin" to the user model to indicate its identity. In the config/routes.rb, I mount /admin for RailsAdmin:Engine I ...
0
votes
0answers
47 views

Rails_admin with db-charmer

I have three models: Category, CategoryGroup, CategoryGroupMapping. Issue is that Category(db1) and CategoryGroup(db2) + CategoryMapping(db2) are on different databases. class Category < ...
4
votes
2answers
365 views

Using rails_admin to display dropdown list on belongs_to association

I am using rails_admin to manage data in a rails application. I have this class: class Activity < ActiveRecord::Base attr_accessible :content, :title, :category_id belongs_to :category, ...
2
votes
1answer
77 views

Rails 3 + rails_admin + MongoDB how represent an array

Are there another ways of representing a array type field in rails_admin? Now it looks: - alsace - france - french - pinot blanc - dry where array items are separated by - symbol.
0
votes
0answers
108 views

How create rails_admin navigation labels without create empty models?

In rails admin you can define a navigation label to a model and his childrens like so: #in rails_admin.rb config.model Order do navigation_label 'Orders related' end config.model OrderProducts do ...

1 2 3 4 5