diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js index b54b15afb..de8c2486f 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js +++ b/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('' + _b[_h.name] + ''); + $tr.append('' + (_b[_h.name] ? _b[_h.name]:'') + ''); } else { - $tr.append('' + _b[_h.name] + ''); + $tr.append('' + (_b[_h.name] ? _b[_h.name] : '') + ''); } }); });