var viewport = new Ext.Viewport({
layout: 'border',
items: [
// create instance immediately
new Ext.BoxComponent({
region: 'north',
height: 34, // give north and south regions a height
autoEl: {
tag: 'div',
html:''
}
}),
new Ext.Panel({
contentEl: 'west',
id:'Dashboard',
title: 'Dashboard',
border: false,
iconCls: 'settings' // see the HEAD section for style used
})
,
new Ext.Panel({
title: 'Administration',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
id:'Sales',
title: 'Sales',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Contract',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Customer',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Services',
html: '<p>Some settings in here.</p><br>jksdfkjsdjk',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Order Provisioning',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Work Management setup',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Work Management',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Worklist',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Common Utilities',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})
,
new Ext.Panel({
title: 'Reports',
id:'Reports',
html: '<p>Some settings in here.</p>',
border: false,
iconCls: 'settings'
})