EXT grid的cellclick事件,怎样限制它在某列被点击时才触发
求教。在使用EXT中的GRIDcellclick事件时,怎样才能设置成单击某一列时才会触发?现在的情况是,单击GRID中的任何CELL都会被触发。以下是代码functio...
求教。在使用EXT中的GRID cellclick 事件时,怎样才能设置成单击某一列时才会触发?现在的情况是,单击GRID中的任何CELL都会被触发。以下是代码
function cellclick(grid, rowIndex, columnIndex, e) {
var record = grid.getStore().getAt(rowIndex); //Get the Record
var fieldName = grid.getColumnModel().getDataIndex(columnIndex); //Get field name
var data = record.get(fieldName);
Ext.MessageBox.alert('show','当前选中的数据是'+data);
}
希望解答得具体些,谢谢。 展开
function cellclick(grid, rowIndex, columnIndex, e) {
var record = grid.getStore().getAt(rowIndex); //Get the Record
var fieldName = grid.getColumnModel().getDataIndex(columnIndex); //Get field name
var data = record.get(fieldName);
Ext.MessageBox.alert('show','当前选中的数据是'+data);
}
希望解答得具体些,谢谢。 展开
1个回答
展开全部
根据你的代码 最简单改动最小的是 判断参数 columnIndex 如果是 你想要的列 你执行下面的代码 如果不是 则直接return false;
如 if(columnIndex==3){ //第3列 是你想要触发的列
执行你的代码
}
else {(如果后面没代码了 不加也行)
return false;
}
也有更好的办法,不过这个是对你来说 最简单的了
有问题在发消息给我
如 if(columnIndex==3){ //第3列 是你想要触发的列
执行你的代码
}
else {(如果后面没代码了 不加也行)
return false;
}
也有更好的办法,不过这个是对你来说 最简单的了
有问题在发消息给我
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询