X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/app/simple/app/view/user/List.js diff --git a/examples/app/simple/app/view/user/List.js b/examples/app/simple/app/view/user/List.js new file mode 100644 index 00000000..731a1d97 --- /dev/null +++ b/examples/app/simple/app/view/user/List.js @@ -0,0 +1,12 @@ +Ext.define('AM.view.user.List' ,{ + extend: 'Ext.grid.Panel', + alias : 'widget.userlist', + + title : 'All Users', + store: 'Users', + + columns: [ + {header: 'Name', dataIndex: 'name', flex: 1}, + {header: 'Email', dataIndex: 'email', flex: 1} + ] +});