Sencha Touch 交流 QQ 群 224711028
var info = new Ext.Panel({
html: '<img src="info.png"/>',
height: 35,
width: 35,
});
加载事件:
info.on('afterrender', function(){
this.body.on('click', function(){
popup.show('pop');
});
});
popup.show({type: 'slide', direction: 'down'});