Skip to content
Snippets Groups Projects
Commit aa544761 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

* Fixed statusbar

parent 6505d0dc
No related branches found
No related tags found
No related merge requests found
...@@ -59,11 +59,29 @@ function initViewport() { ...@@ -59,11 +59,29 @@ function initViewport() {
// mainWindow // mainWindow
// ] // ]
}, },
{ {
id: 'main-statusbar', id: 'main-statusbar',
xtype: 'statusbar', xtype: 'panel',
region: 'south', region: 'south',
border: true border: true,
height: 30,
bbar: new Ext.ux.StatusBar({
id: 'my-status',
// defaults to use when the status is cleared:
defaultText: 'Default status text',
defaultIconCls: 'default-icon',
// values to set initially:
text: 'Ready',
iconCls: 'ready-icon'
// any standard Toolbar items:
// items: [{
// text: 'A Button'
// }, '-', 'Plain Text']
})
} }
/* /*
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment