Ext.ns("feyaSoft.main");feyaSoft.main.MainPanel=function(){this.accountTutor=new feyaSoft.home.extjsTutor.account.List();this.accountFormTutor=new feyaSoft.home.extjsTutor.gridForm.Main();this.aboutUsPanel=new feyaSoft.main.AboutUsPanel();this.mainTab=new Ext.ux.GroupTabPanel({region:"center",tabWidth:145,activeGroup:0,items:[{mainItem:0,items:[{title:"About Us",tabTip:"About FeyaSoft",iconCls:"feyasoft_icon",autoScroll:true,layout:"fit",border:false,items:this.aboutUsPanel},{title:"MyCalendar",iconCls:"calendar",listeners:{activate:this.goToMyCalendar}},{title:"MySpreadSheet",iconCls:"excel",listeners:{activate:this.goToSpreadsheet}},{title:"Our Architecture",iconCls:"buildingKey",autoScroll:true,layout:"fit",border:false,autoLoad:{url:"html/aboutUs/main_hla_diagram.html",scripts:true}},{title:"Contact Us",iconCls:"contactUs",autoScroll:true,layout:"fit",border:false,autoLoad:{url:"html/aboutUs/contactUs.html",scripts:true}},{title:"Home",iconCls:"feyasoft_icon",listeners:{activate:this.goToHome}}]},{items:[{title:"Extjs Tutorial",tabTip:"FeyaSoft Extjs Tutorial",autoScroll:true,layout:"fit",border:false,autoLoad:{url:"html/extjsTutor/codeStyle.html",scripts:true}},{title:"Grid CRUD Filter",iconCls:"demo_icon",tabTip:"FeyaSoft Extjs Tutorial",autoScroll:true,layout:"fit",border:false,items:[this.accountTutor]},{title:"Grid Form Filter",iconCls:"demo_icon",tabTip:"FeyaSoft Extjs Tutorial",autoScroll:true,layout:"fit",border:false,items:[this.accountFormTutor]}]}]});feyaSoft.main.MainPanel.superclass.constructor.call(this,{id:"main_panel_page",region:"center",layout:"border",border:false,items:[this.mainTab]})};Ext.extend(feyaSoft.main.MainPanel,Ext.Panel,{goToSpreadsheet:function(){window.location="mySpreadSheet.gsp"},goToMyCalendar:function(){window.location="myCalendar"},goToHome:function(){window.location="index.gsp"}});