ExtJS 4 – bindStore vs reconfigure 두가지 사용법


내용상으로는  마스터 디테일 구조에서
디테일쪽 데이터 구조를 연결하는 2가지 방법입니다.

1. bindStore 

myForm.loadRecord(myRecord);
myGrid.getView().bindStore(myRecord.getAssociatedStore());

2. reconfigure  

myGrid.reconfigure(myRecord.getAssociation(), columnConfig);
myGrid.getStore.sort("id", "ASC");
myGrid.getView().refresh();


댓글

가장 많이 본 글