Experimenting with Netzke/ ExtJS

This commit is contained in:
Jason Denney
2012-12-23 09:02:07 -05:00
parent ead5f7b433
commit d7f5eb26bf
18 changed files with 345 additions and 51 deletions
+18
View File
@@ -0,0 +1,18 @@
class Users < Netzke::Basepack::Grid
def configure(c)
super
c.model = "User"
c.columns = [
:first_name,
:last_name,
:nickname,
:email
]
end
#override with nil to remove actions
def default_bbar
[ :apply, :add_in_form ]
end
end