画像のタップにオーバーレイを表示したい。しかし、それは表示されていません。私のコードの間違いは何ですか。画像のタップにオーバーレイを表示する方法を教えてもらえますか?
これが私のコードです:
{
xtype: 'image',
src: 'http://www.veryicon.com/icon/preview/System/Colored%20Developers%20Button/question%20Yellow%20Icon.jpg',
listeners: {
tap: function () {
var popup = Ext.create('Ext.Panel', {
modal: true,
centered: true,
width: 300,
height: 400,
layout: 'fit',
scrollable: true
});
popup.show();
}
},
height: 32,
width: 32
}