Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
42 views

I'm currently trying to migrate to activeadmin 3.0.0, which requires ransackable 4.3.0. This breaking change require to add ransackable_attributes and ransackable_associations as class methods in my ...
Monica Quiros's user avatar
0 votes
2 answers
57 views

I am running rails 8 and active_admin version 4.0.0-beta16 and I managed to update app/assets/stylesheets/active_admin.css with this content: @import "tailwindcss"; The CSS works well ...
FredyK's user avatar
  • 305
1 vote
0 answers
206 views

I'm having an issue with ActiveAdmin 3.3.0 in my Rails 8.0.2 application where DELETE actions are not working. When an admin user clicks the "Delete" link, the application performs a GET ...
Brian Lane's user avatar
0 votes
1 answer
46 views

I have this problem in ActiveAdmin. When I try to reset a user's password with devise send_reset_password_instructions. member_action :reset_password, method: :get do resource....
Rodrigo Ladrón de Guevara's user avatar
-2 votes
1 answer
48 views

In my Rails application, ruby 2.6.5, rails 6.1. I use Active admin and I created this page. How can I create some tests for this using rspec? I have already created tests for the model and the ...
Karina Piloupas's user avatar
0 votes
1 answer
35 views

I have a very strange situation in my app where one use of ActiveAdmin's form.has_many helper is working as expected, and a new near-copy of it is only showing the last record in the list. Here's my ...
AJFaraday's user avatar
  • 2,458
1 vote
1 answer
64 views

The back end added the gem ActiveAdmin on my website (version 1.1.0), but I don't find the css file to edit the colors and the design. Where is it? I checked on the assets folders but nothing. I also ...
Dominic's user avatar
  • 11
1 vote
1 answer
37 views

A client requested to have the ActiveAdmin "New Resource" form show up underneath the index_as_table, in order to be able to refer to existing rows while creating the new one. I thought I ...
Sprachprofi's user avatar
  • 1,279
0 votes
1 answer
124 views

I run a Ruby on Rails application with Active Admin as an admin backend. My setup is: Ruby 2.5.9 Rails 5.2.8.1 ActiveAdmin 2.9.0 Webpacker 4.3.0 I migrated the application from an older VM and updated ...
RoRoOnFire's user avatar
1 vote
1 answer
559 views

I'd like to create an activeadmin filter on a page for a model that has an association with the User model. I'd like to use the custom scope matches_name, which combines the first_name and last_name ...
Dan Monego's user avatar
  • 10.1k
0 votes
0 answers
108 views

I have a situation where I have two models, where there is a 1:1 association between them and some method delegation: class Sale < ApplicationRecord has_one :receipt delegate :date, to: :...
Jonathon Nordquist's user avatar
0 votes
1 answer
275 views

I am using arctic_admin gem . Following https://github.com/cprodhomme/arctic_admin I have added in the gem file gem 'arctic_admin' in /app/assets/javascripts/active_admin.js file //= require ...
VR_1's user avatar
  • 153
0 votes
1 answer
119 views

We use Rails ActiveAdmin and we are hitting strange asset compiling error. The error causes our rspec CI job to fail in github. It's failing with a database connection error like so: Run bundle exec ...
Harry Wood's user avatar
  • 2,371
1 vote
0 answers
82 views

I've got a brand new rails app (7.1.0) (with a few models) that I have set up with ActiveAdmin and the only model that works is my Admin model. I noticed that the admin model is the only table that ...
Ben West's user avatar
  • 699
1 vote
2 answers
833 views

I'm getting the infamous: Ransack needs ActiveStorage::Attachment attributes explicitly allowlisted as searchable. Define a ransackable_attributes class method in your ActiveStorage::Attachment model....
mystic cola's user avatar
  • 1,663
4 votes
2 answers
952 views

Just install active_admin in rails 7 and ruby 3.1.0 gem 'activeadmin', github: 'activeadmin/activeadmin', branch: 'master' It add two style files. One is active_admin_old.scss and other is ...
Haseeb Ahmad's user avatar
  • 8,830
0 votes
0 answers
324 views

Using ActiveAdmin 2.9.0, Rails 6 and Postgres 14.6. I have model Persona that looks like this in the schema: create_table "personas", force: :cascade do |t| t.string "orcid" t....
EliRotenberg's user avatar
1 vote
1 answer
1k views

I am using tailwindcss-rails gem along with Flowbite(fyi). I developed a whole app on top of those two and recently I needed to add an admin gem to the app. I really like ActiveAdmin, but as soon as I ...
crodev's user avatar
  • 1,491
1 vote
1 answer
165 views

Trying to build this with Active admin 3.0. This seems so basic to me that I feel I must be missing something. Let's assume I have a Store model and an Employee model and a store has many employees ...
Andrew's user avatar
  • 1,013
0 votes
1 answer
513 views

In my rails 7.0.4 app I use: activeadmin 3.0.0 ransack 4.0.0 paper_trail 15.0.0 I have the page for filtering and sorting history of changes to the data: ActiveAdmin.register PaperTrail::Version do ...
mirelon's user avatar
  • 5,016
0 votes
1 answer
131 views

Is there a way to access the data from Active Admin? Im creating a mobile app that will connect to an active admin website. I need to retrieve data from the website.
h3n's user avatar
  • 5,258
0 votes
2 answers
135 views

I am using Rails 7 Active admin I have Project that is Workshop Project that is related to organizing workshops, booking them etc. I am using Friendly ID Gem . The url looks like http://127.0.0.1:3000/...
Muhammad Bilal's user avatar
7 votes
2 answers
1k views

I am using ruby 3.1.3, rails 7.0.5 and activeadmin 3.0. I just followed the installation instructions from the activeadmin website, but I got the following error: ActionView::Template::Error (Ransack ...
NaguiHW's user avatar
  • 167
0 votes
1 answer
93 views

I have a SQL function in my ROR model def permit_needing_maps_link rows = ActiveRecord::Base.connection.exec_query("select dbo.NeedMapsList(#{self.CONO})").rows rows.flatten![0] if !rows....
Sean Gillespie's user avatar
2 votes
2 answers
639 views

My project is set up as rails only API application, and flagged with no javascript. they have added active admin to it and made necessary changes to it making javascripts folder in assets as required ...
Aadhi's user avatar
  • 21

1
2 3 4 5
73