<style>
.test{background-color: #E8E8E8; }
</style>
var temRow; function onShowRowDetail(e) { if (temRow != null ){ grid.removeRowCls(temRow,'test');//取消行背景色 } temRow=e.row; grid.addRowCls(e.row,'test');//添加行背景色
}
注意:要写style样式,直接写,会无效。点击下一行时,要取消上一次点击行的背景色。需将上一选中列设置个临时变量。