diff options
Diffstat (limited to 'web/DeviceView.js')
-rw-r--r-- | web/DeviceView.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/web/DeviceView.js b/web/DeviceView.js index a99e20fd4..09174467c 100644 --- a/web/DeviceView.js +++ b/web/DeviceView.js @@ -20,6 +20,26 @@ Ext.define('DeviceView', { title: Strings.device_title, + + initComponent: function() { + + this.tbar = [{ + text:'Add' + }, { + text:'Edit' + }, { + text:'Remove' + }, { + xtype: 'tbfill' + }, { + text:'Settings' + }, { + text:'Logout' + }]; + + this.callParent(); + }, + store: { proxy: { type: 'ajax', |