Ext.ns("feyaSoft.oilAccount.share.search");feyaSoft.oilAccount.share.search.SearchPanel=function(config){this.companyPanel=new feyaSoft.oilAccount.share.search.CompanyPanel();this.companyPanel.initLoadData();this.productPanel=new feyaSoft.oilAccount.share.search.ProductPanel();this.homePanel=new feyaSoft.oilAccount.account.home.MainPanel({});this.itemsTab=new Ext.TabPanel({activeTab:0,deferredRender:true,monitorResize:true,defaults:{autoScroll:true},resizeTabs:true,tabWidth:200,enableTabScroll:true,plugins:new Ext.ux.TabCloseMenu(),layoutOnTabChange:true,hideMode:"offsets",border:false,items:[{title:"Home",closable:false,autoScroll:true,border:false,layout:"fit",items:this.homePanel},{title:"Companies",closable:false,autoScroll:true,border:false,layout:"fit",items:this.companyPanel},{title:"Products",closable:false,autoScroll:true,border:false,layout:"fit",items:this.productPanel},{title:"About OilAccount",closable:false,autoScroll:true,border:false,layout:"fit",items:[{xtype:"iframepanel",loadMask:{msg:"<center>Loading</center>"},defaultSrc:"home.html",border:true}]}]});feyaSoft.oilAccount.share.search.SearchPanel.superclass.constructor.call(this,{id:config.id,layout:"fit",items:this.itemsTab})};Ext.extend(feyaSoft.oilAccount.share.search.SearchPanel,Ext.Panel,{initLoadData:function(){this.companyPanel.initLoadData()}});
