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 f47785c7b..281f6bd19 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 @@ -200,13 +200,13 @@ } else if (_item.type == 'input') { var colspan = _item.col * 2 - 1; - var _text = _item.text; + var _text = ''; + if (_item.text) { + _text = _item.text; + } if (_item.textList) { _text = String(_item.textList); - } else { - _text = ''; - } - + } var $td = a('' + _text + ''); $td.attr('colspan', colspan); $tr.append('' + _item.name + ':');