zhxc87 发表于 2014-11-26 15:12:34

动态报表页面跳转

在动态报表配置中,有个字段href,这个字段应该是在每列可以进行页面跳转使用的,请问,有谁使用过这个功能呢?我这边增加这个功能,在cgreportlist.ftl文件中
<#if x['field_href'] != "">   formatter:function(value,rec,index){
        var href='';
        href+=applyHref('字段链接','${x['field_href']}',value,rec,index);
      return href;
},
</#if>
这个地方提示“freemarker.core.InvalidReferenceException: Expression x['field_href'] is undefined on line 25, column 54 in com/Common/hqreport/engine/cgreportlist.ftl.
[*]


”这个错误,有谁知道是什么原因吗?
页: [1]
查看完整版本: 动态报表页面跳转