Sencha Grid scroll 추가
2024. 11. 26. 22:07ㆍJavascript/Sencha
scrollable: true
Ext.create('Ext.grid.Panel', {
renderTo: Ext.getBody(),
title: 'Scrollable Grid Example',
width: 800,
height: 400, // Set a fixed height to make scrolling effective
scrollable: true, // Enable scrolling
store: Ext.create('Ext.data.Store', {
fields: ['id', 'name', 'email'],
data: (function () {
// Generate sample data
let data = [];
for (let i = 1; i <= 100; i++) {
data.push({
id: i,
name: 'User ' + i,
email: 'user' + i + '@example.com'
});
}
return data;
})()
}),
columns: [
{ text: 'ID', dataIndex: 'id', flex: 1 },
{ text: 'Name', dataIndex: 'name', flex: 2 },
{ text: 'Email', dataIndex: 'email', flex: 3 }
]
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha Grid store 업데이트 하기 (0) | 2024.11.27 |
---|---|
Sencha Grid 선택된 row 색깔 바꾸기 (0) | 2024.11.27 |
Sencha Grid 405에러 415에러 처리 (0) | 2024.11.26 |
Sencha chart에서 확대 축소 처리 (0) | 2024.11.24 |
Sencha layout item들이 수평으로 꽉차게 보이도록 처리 (0) | 2024.11.24 |