Sencha treepanel에서 값은 바뀌지 않고, depth에 따라 indent처리해서 보여주기
2024. 12. 5. 21:52ㆍ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"/>'
}
]
});
}
});
{
text: '순서', dataIndex: 'index', flex: 1,
editor: {
xtype: 'textfield',
allowBlank: false
},
renderer: function(value, metaData, record) {
const depth = record.getDepth();
const indent = depth * 20;
return `<div style="margin-left: ${indent}px;">${value}</div>`;
}
},
'Javascript > Sencha' 카테고리의 다른 글
Sencha checkcolumn 체크 및 이벤트 (0) | 2024.12.08 |
---|---|
Sencha treepanel drag&drop 적용 (0) | 2024.12.05 |
Sencha 이미지 사이즈 정보 가져오기 (0) | 2024.12.05 |
Sencha panel에 html을 사용하여 이미지 나오게 하기 (0) | 2024.12.05 |
Sencha treepanel row 선택하기 (0) | 2024.12.05 |