我在 sencha touch 1.1 版本中有这个代码,如何使它在版本 2 中工作?“负载”不起作用
html:
<img src="" id="previewImage"/>
代码:
this.domImage=Ext.get("previewImage");
this.domImage.on("load",function(){
debugger; // not working
a.sizePhotoInContainer();
a.resizePhoto()
});
on() 已弃用:http ://docs.sencha.com/touch/2-0/#!/api/Ext.EventManager-method-on
谢谢!