Sencha 팝업 내용 html로 꾸미기
2025. 1. 21. 23:28ㆍJavascript/Sencha
Ext.create('Ext.window.Window', {
title: 'Line Information',
modal: true,
width: 300,
height: 200,
layout: 'fit',
items: {
xtype: 'panel',
html: `
<p><strong>Series Title:</strong> ${item.series.getTitle()}</p>
<p><strong>Category:</strong> ${item.record.get('category')}</p>
<p><strong>Value:</strong> ${item.record.get('value')}</p>
`
}
}).show();
'Javascript > Sencha' 카테고리의 다른 글
Sencha iframe으로 팝업 띄우기 (0) | 2025.01.21 |
---|---|
Sencha chart의 line 클릭시 팝업 띄우기 (0) | 2025.01.21 |
Sencha store 정보 가져오기 (0) | 2025.01.21 |
Sencha 팝업 호출시 get방식으로 파라메터 전달 (0) | 2025.01.21 |
Sencha callback 함수 샘플 (0) | 2025.01.21 |