ExtJS 经典代码(还没完成那 悲剧 没时间啊)

 

<script type='text/javascript'>
function highlightWindow() {
var win = Ext.getCmp('myWindow');
var winBody = win.body;
winBody.highlight();
}
highlightWindow.defer(1000);
</script>

 

 

 

Ext.get('myHref').on('click', function(eventObj, elRef) {
console.log('myHref click handler, source elment ID: ' + elRef.id);
});

 

 

 

Ext.get('myHref').on('click', function(eventObj, elRef) {
eventObj.stopEvent();
console.log('myHref click handler, source elment ID: ' + elRef.id);
});

 

 

 

 

你可能感兴趣的:(ExtJs)