listeners:{
cellclick:function(a,b,c,d){
if('商品'==a.colModel.config[c].header){
alert(a.getStore().data.get(b).json.字段名)
}
}
}
a grid对象
b store数据的index
c 列号
获取该行的某个字段的值 a.getStore().data.get(b).json.字段名
自己在浏览器里面 通过 console.debug 打印确认参数的含义