提交 66d511b3 编写于 作者: doc_wei's avatar doc_wei

解决表格工具类的bug

上级 f60e71f2
......@@ -64,7 +64,7 @@ var initTableChooseUtil = {
$.each(newOptions.cols, function (i, item) {
var colHeaderId = isNull(item.colHeaderId) ? "" : ("id = " + item.colHeaderId);
var bs = '';
if (item.verify.indexOf('required') >= 0) {
if (!isNull(item.verify) && item.verify.indexOf('required') >= 0) {
bs = '<i class="red">*</i>';
}
headerStr += '<th style="width: ' + item.width + 'px; white-space: nowrap;" ' + colHeaderId + '>' + item.title + bs + '</th>';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册