loadComplete
:function(){
istableNull(grid_selector
);
}
function istableNull(tableid
){
var re_records
= $(tableid
).getGridParam('records');
tableid
= tableid
.substr(1,tableid
.length
);
if(re_records
=== 0 || re_records
== null){
$("#"+tableid
).parent().append("<div class=\""+tableid
+"\" style=\"text-align: center;color: #333333;line-height: 40px;border-bottom: 1px solid #bce8f1;\">暂无相应数据!</div>");
$("."+tableid
).show();
} else{
$("."+tableid
).hide();
}
}
转载请注明原文地址: https://mac.8miu.com/read-493695.html