grid.getStore().getRange(0,store. getCount() ;
grid.getSelectionModel().getSelections(); //선택한 행 모두 가져오기
//참고: 선언하지 않은 경우 var sm = new Ext.grid.CheckboxSelectionModel(); , 이 문장이 보고됩니다.
Var selectRows = Grid.getSelectionModel().getSelections();
selectRows[0].get("dataIndex attribute value of a columns in gird") // 선택한 행 레코드의 열 가져오기
값 복사
코드는 다음과 같습니다. 다음과 같습니다:
grid .selModel.selections.items; //선택된 모든 행 가져오기
코드는 다음과 같습니다.
grid.getSelectionModel().getSelected() //선택한 행의 첫 번째 행을 가져옵니다
코드는 다음과 같습니다.
// Get the 클릭하면 그리드에 있는 행의 데이터
proLevelGrid.on('rowclick' , function(proLevelGrid,rowIndex,event){
var Record = proLevelGrid.getStore().getAt(rowIndex);
addProductLevel_form.getForm().loadRecord(record);
alert(record.get('id')) })
코드 복사
코드는 다음과 같습니다.
vargrid1_RowClick = function(a,b,c){
/ / 특정 열의 데이터 가져오기
var id = a.getStore().getAt(b) .get("Id")