소스 검색

jquery打印null值处理

娄底高职分支
hwh2023 1 년 전
부모
커밋
0a5dd84dc0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js

+ 2
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js 파일 보기

@@ -191,10 +191,10 @@
$table.append($tr);
$.each(_item.gridHead, function (_i, _h) {
if (_i == _item.gridHead.length - 1) {
$tr.append('<td colspan="' + _colp_last + '">' + _b[_h.name] + '</td>');
$tr.append('<td colspan="' + _colp_last + '">' + (_b[_h.name] ? _b[_h.name]:'') + '</td>');
}
else {
$tr.append('<td colspan="' + _colp + '">' + _b[_h.name] + '</td>');
$tr.append('<td colspan="' + _colp + '">' + (_b[_h.name] ? _b[_h.name] : '') + '</td>');
}
});
});


불러오는 중...
취소
저장