EXTJS 3
怎么获取GRID某单元格里的ComboBox,并把它禁用.,现在已取到行 列索引
------解决方案--------------------
platformGrid.on("cellclick",function(grid,rowIndex , columnIndex, e ){
if(columnIndex == 4) {
deptMappingCombo.enable();
}
});使用单击单元格事件的方式,判断该列序号,或者你也可以判断该列所对应的dataIndex值