MyDesktop.BogusMenuModule2 = Ext.extend(MyDesktop.contracts, {
init : function(){
this.launcher = {
text: 'In Development',
iconCls: 'bogus',
handler: function() {
return false;
},
menu: {
items:[ {
text: 'Purchase Orders',
iconCls: new MyDesktop.purchaseorders().launcher.iconCls,
handler : new MyDesktop.purchaseorders().createWindow,
scope: this,
windowId: 'Purchase Orders'
},
{
text: 'Expense Reports - Moved to Applications Folder',
iconCls: new MyDesktop.expensereports().launcher.iconCls,
//handler : new MyDesktop.expensereports().createWindow,
scope: this,
windowId: 'Expense Reports'
}
] } } }});
0 comments:
Post a Comment