Last active
August 29, 2015 14:15
-
-
Save skuroki/a506a3c93a134746d529 to your computer and use it in GitHub Desktop.
ActiveAdminのtable_forに渡したcollectionが勝手にdecorateされるようにする ref: http://qiita.com/skuroki@github/items/bcc99e456463901e44fa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module TableDecoration | |
def build(obj, *attrs) | |
ActiveDecorator::Decorator.instance.decorate(obj) | |
super(obj, *attrs) | |
end | |
end | |
module ActiveAdmin | |
module Views | |
class TableFor < Arbre::HTML::Table | |
prepend TableDecoration | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment