首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

ExtJs 四 get selected Rows and Cells from a Grid panel

2012-08-28 
ExtJs 4 get selected Rows and Cells from a Grid panel1、How to get selected Rows from a Grid panel i

ExtJs 4 get selected Rows and Cells from a Grid panel
1、How to get selected Rows from a Grid panel in ExtJs 4
   get reference to grid selection model could be rowModel or cellModel depending on what was defined in the grid definition         selType: 'cellmodel' or selType: 'rowmodel'
       seletionModel = grid.getSelectionModel()
   get array of the currently selected records
       selectedRecords = selectionModel.getSelection()
   get the value of given field definition from the first selected row
       myValue = selectedRecords[0].get('fieldName')
   loop thru selectedRecords for more records if MULTI selection was allowed
2、How to get selected Cells from a Grid panel in ExtJs 4
   To get selected cell you must used selType = cellModel. After you get reference to the selectionModel as defined above use
        getCurrentPosition( )
    Returns the current position in the format {row: row, column: column}
    After you have the current row and column get the grid view to access the cell
        cell = grid.getView().getCellByPosition({row: obj.rowIdx, column: obj.colIdx});

热点排行
Bad Request.