i have created a window, on the toolbar i have added a button,menu and combobox, when i open window for first time menu,button and comboBox are visible but when i open the window for IInd time combobox is not visible.
------------code-------------
var detailViewData = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url:'analyzerSummaryHandler.do?cmd=GetViewData&screen=DETAIL SCREEN&viewName='+currentViewName+'&companyId='+companyId
}),
reader: new Ext.data.JsonReader({
root: 'viewData',
totalProperty: 'rCnt',
id: 'id',
fields: [{name: 'valueColum'},{name: 'lableColum'}]
})
});