ExtJS
--------------------------
Ext
isBorderBox : Boolean
True if the detected browser is Internet Explorer running in non-strict mode.
--------------------------
解決世界難題 : )
Move cursor doesn't disappear within IE9.
http://www.sencha.com/forum/showthread.php?160012-Move-cursor-doesn-t-disappear-within-IE9
--------------------------
Listener 寫法
//js error may occur
'actionfailed': {
fn: this.form.reset,
scope: this
},
'actionfailed': {
fn: function(){
this.form.reset();
},
scope: this
},
//perferred
var me = this;
'actionfailed': {
fn: function(){
me.form.reset();
},
scope: me
},
-----------------------------------------------------------------------------