Hi all ,
I had a problem ,widow ones closed is not opening due to items
extjs desktop system i created shortcut on the destop and when i click on the link first time window opens is working and if i close the subwindow and click on the same link again not opening not working
/*****this is the code till now *******/
Ext.Window{
/**** here is my stuff ******/
items:[ a1 ]
}
var a1 = new Ext.FormPanel({ //*** other stuff ****//
items:[ new combobox({id:'com'})]
});
/*****End of code till now *******/
if i change to
Ext.Window{
/***** here is my stuff ******/
items:[ new a1() ]
}
var a1 = Ext.extend( Ext.FormPanel ,{
/****some stuff ****/
items:[ new combo_box({id:'com'})]
} );
the combo_box does not work can somebody help me a little on this stuff