재구성 기능을 사용하여 패널 양식 의 열과 데이터를 변경하고 있습니다.페이징 저장소가 변경되지 않았습니다.
는 코드가 작동 내가
var newStore = Ext.create('Ext.data.Store', {
fields: tmpFields,
pageSize: itemsPerPage,
proxy: {
type: 'ajax',
url: getDataWithPageURL,
}
});
globalStore = newStore.load({
params: {
start: 0,
limit: itemsPerPage
}
});
grid.reconfigure(globalStore, tmpColumns);
을 쓴 코드를 아래 참조, 데이터가 변경됩니다. 그러나 페이징 및 합계는 이전 데이터를 표시합니다.
도와주세요.
나는 이미 그것을 siolved. 도와 주셔서 감사합니다 –