JsGrid 跳过一行
JsGrid skip a row
我有一个 JsGrid 实现。我在其中使用一些项目模板进行计算,例如:
itemTemplate: function(value, item) {
Total = Total + (item.SomeValue - item.SomeOtherValue);
return(Total);
}
有时"Total"是空的。在那种情况下,我想跳过整行。
有什么办法吗?
现在我得到了很多空行。
谢谢,迈克
itemTemplate
用于更新行中的单元格。如果你想操作行那么你必须使用回调函数 rowRenderer
.
rowRenderer: function(item,itemIndex){
if('condition_to_skip_row'){ return null;}
return '<h1>1<h1>';
}
参考 jqGrid 文档 - http://js-grid.com/docs/#configuration
我有一个 JsGrid 实现。我在其中使用一些项目模板进行计算,例如:
itemTemplate: function(value, item) {
Total = Total + (item.SomeValue - item.SomeOtherValue);
return(Total);
}
有时"Total"是空的。在那种情况下,我想跳过整行。 有什么办法吗? 现在我得到了很多空行。
谢谢,迈克
itemTemplate
用于更新行中的单元格。如果你想操作行那么你必须使用回调函数 rowRenderer
.
rowRenderer: function(item,itemIndex){
if('condition_to_skip_row'){ return null;}
return '<h1>1<h1>';
}
参考 jqGrid 文档 - http://js-grid.com/docs/#configuration