ユーザーがパンできる大きな画像を表示しようとしています(垂直方向と水平方向にスクロールします)。しかし、画像をスクロールすることはできません。これは私が持っているものです:
Ext.define('myapp.view.image.Floorplan', {
extend: 'Ext.Container',
requires: 'Ext.Img',
xtype: 'floorplan',
config: {
title: 'Floorplan',
iconCls: 'locate',
items: [
{
xtype: 'image',
scrollable: true,
src: './resources/images/floorplan.png',
height: 1570,
width: 1047
}
]
}
});
画像をスクロール可能にするにはどうすればよいですか?
ありがとうマット