Sencha store 정보 가져오기
2025. 1. 21. 23:18ㆍJavascript/Sencha
store.each로 전체 record 정보 처리
store.getAt(0)로 특정 record 가져오기
const store = Ext.create('Ext.data.Store', {
fields: ['DATA1', 'DATA2'],
data: [
{ DATA1: 'value1', DATA2: 'value2' },
{ DATA1: 'value3', DATA2: 'value4' }
]
});
// Access all records in the store
store.each(function (record) {
console.log('Record:', record.getData()); // Logs each record's data
});
// Access a specific record
const firstRecord = store.getAt(0);
console.log('DATA1:', firstRecord.get('DATA1')); // 'value1'
console.log('DATA2:', firstRecord.get('DATA2')); // 'value2'
'Javascript > Sencha' 카테고리의 다른 글
Sencha iframe으로 팝업 띄우기 (0) | 2025.01.21 |
---|---|
Sencha chart의 line 클릭시 팝업 띄우기 (0) | 2025.01.21 |
Sencha 팝업 호출시 get방식으로 파라메터 전달 (0) | 2025.01.21 |
Sencha callback 함수 샘플 (0) | 2025.01.21 |
Sencha this 사용시 주의사항 (0) | 2025.01.21 |