- 注册时间
- 2016-10-18
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 18
- 精华
- 0
- 帖子
- 6
|
本帖最后由 18883794127 于 2016-10-19 08:53 编辑
在miniui里面选中行的方法并且对行进行渲染之后渲染方法和选中行方法不冲突。渲染方法:
$(function() {
// 在 mini 界面初始化之后执行
var grid = mini.get("datagrid");
// 注册单元格渲染事件
grid.on("drawcell", drawCell);
function drawCell(e) {
var row = e.record, field = e.field, val = e.value;
// 用当前列的值
if (field == "isVerify") {
if (val == 1) {
// e.cellHtml = "<font color=red>" + val + "</font>";
// e.cellStyle = "background:lightpink";
// 行样式(不建议设置)
e.rowStyle = "background:red";
} else {
e.rowStyle = "background:yellow";
}
}
}
});
|
|