EXT中的apply方法
Ext.apply = function(o, c, defaults){
if(defaults){
// no "this" reference for friendly out of scope calls
Ext.apply(o, defaults);
}
if(o && c && typeof c == 'object'){
for(var p in c){
o[p] = c[p];
}
}
return o;
};
该方法的作用就是复杂类的属性和方法,同时,如果有默认的新的配置属性的话,就给o给附上。