我有这个代码在firebug中给我下面的输出,所以根据这个输出我可以过滤td
并指定不同的背景颜色,对吗?
我的代码
loadComplete: function() {
var i, names=this.p.groupingView.sortnames[0], l = names.length;
for (i=0;i<l;i++) {
if (names[i]==='envVariable') {
$(this).jqGrid('groupingToggle',this.id+"ghead_"+i);
} else {
// hide the grouping row
$('#'+this.id+"ghead_"+i).hide();
}
}
var getColumnIndexByName = function(grid, columnName) {
var cm = grid.jqGrid('getGridParam','colModel'),i=0,l=cm.length;
for (; i<l; i++) {
if (cm[i].name===columnName) {
return i; // return the index
}
}
return -1;
};
var iCol = getColumnIndexByName($(this),'isEqual'),
cRows = this.rows.length, iRow, row, className;
for (iRow=0; iRow<cRows; iRow++) {
row = this.rows[iRow];
className = row.className;
if ($.inArray('jqgrow', className.split(' ')) > 0) { // $(row).hasClass('jqgrow')
//this prints into console
console.info(row.cells[iCol]);
//here i am trying to apply filter
$(row.cells[iCol])
.filter("false")
.css("background", "#c8ebcc",
"background-color", "#DCFFFF",
"background-image", "none");
}
}
}
@Oleg:我需要将 isEqual 的所有行隐藏为 true ,并且只显示 isEqual 的行 false ,所有更改的背景颜色。所以我修改了你的代码,如下所示,但它不会隐藏行,它只显示整个事情,没有任何变化,我哪里出错?
var i, l, data = this.p.data, rows = this.rows, item;
l = data.length;
for (i=0;i<l;i++) {
item = data[i];
if (!item.isEqual) {
$(rows.namedItem(item._id_))
.css({
"background-color": "#DCFFFF",
"background-image": "none"
});
}
else
{
$(rows.namedItem(item._id_)).hide();
}
}
答案 0 :(得分:1)
我想,你当前的问题还在继续your previous question。在您使用本地数据的情况下,您可以非常轻松地获取所有网格数据。您可以先定义隐藏的网格列:
{ name: 'isEqual', index: 'isEqual', width: 100, hidden:true }
然后使用以下代码附加loadComplete
:
var i, l, data = this.p.data, rows = this.rows, item;
l = data.length;
for (i=0;i<l;i++) {
item = data[i];
if (!item.isEqual) {
$(rows.namedItem(item._id_))
.css({
"background-color": "#DCFFFF",
"background-image": "none"
});
}
}
结果将是
请参阅演示here。