Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    
    
    Ext.get('div1').on('click', function(eventObj, elRef) {
         alert('myDiv click Handler, source elment ID: ' +  elRef.id);
    });
    
});
 
asdf