Sencha panel에 html을 사용하여 이미지 나오게 하기

2024. 12. 5. 18:26Javascript/Sencha

Ext.application({
    name: 'ImageApp',

    launch: function () {
        Ext.create('Ext.container.Viewport', {
            layout: 'fit',
            items: [
                {
                    xtype: 'panel',
                    title: 'Image Display',
                    html: '<img src="path/to/your/image.jpg" style="width:100%;height:auto;" alt="Example Image"/>'
                }
            ]
        });
    }
});