$foreach(column in genTable.Columns) $set(labelName = "") $set(checkboxHtml = "") $set(showToolTipHtml = "") $set(columnName = column.CsharpFieldFl) $if(column.CsharpType == "string" || column.HtmlType == "datetime") $set(showToolTipHtml = " :show-overflow-tooltip=\"true\"") $end $if(column.ColumnComment != "") $set(labelName = column.ColumnComment) $else $set(labelName = column.CsharpFieldFl) $end $if(column.IsList == true) $if(column.HtmlType == "customInput" && column.IsPk == false) $elseif(column.HtmlType == "imageUpload") $elseif(column.HtmlType == "checkbox" || column.HtmlType == "select" || column.HtmlType == "radio") $else $end $end $end