ソースを参照

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>');
}
});
});


読み込み中…
キャンセル
保存