문제

I try to implements active_admin in my app, and i'm follow this tutorial :

http://activeadmin.info/documentation.html

But when i'm execute this command in my console :

rails generate active_admin:resource product

The file successfully generate :

app/admin/product.rb

But when i'm access index product page in active_admin i get error like this :

ActionView::Template::Error (undefined method `group_values' for #<Array:0xcfe093c>)

how to fix this? thanks before

도움이 되었습니까?

해결책

In your admin/product.rb you can put this code:

ActiveAdmin.register Product, :as => "All Product" do

end

Hopefully, this will help.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top