jeecg 3.6 支持oracle11g 脚本

jeecg-3.6.0
zhangdaiscott 9 years ago
parent a902dbd532
commit 9b7d5245e8

File diff suppressed because one or more lines are too long

@ -22,7 +22,7 @@ $(function(){$('#${config_id}List').datagrid(
<#if x_has_next>
{field:'${x['field_name']}',
title:'${x['field_txt']}',
<#if x['field_href'] != "">
<#if x['field_href']?? && x['field_href']!="">
formatter:function(value,rec,index){
var href='';
href+=applyHref('字段链接','${x['field_href']}',value,rec,index);

@ -237,7 +237,7 @@ function showReport(data, tabName) {
var columns = new Array();
<#list config_fieldList as x>
<#if x["is_show"]== "Y">
columns.push({field:"${x['field_name']}",title:"${x['field_txt']}",width:120, sortable: true});
columns.push({field:"${x['field_name']}",title:"<#if x['field_txt']??>${x['field_txt']}</#if>",width:120, sortable: true});
</#if>
</#list>
columns = [columns];

Loading…
Cancel
Save