Sencha panel에 html을 사용하여 이미지 나오게 하기
2024. 12. 5. 18:26ㆍJavascript/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"/>'
}
]
});
}
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha treepanel에서 값은 바뀌지 않고, depth에 따라 indent처리해서 보여주기 (0) | 2024.12.05 |
---|---|
Sencha 이미지 사이즈 정보 가져오기 (0) | 2024.12.05 |
Sencha treepanel row 선택하기 (0) | 2024.12.05 |
Sencha timefield의 값과 표시를 분리하기 (0) | 2024.12.05 |
Sencha Custom js 파일 등록 (0) | 2024.12.05 |