///////////////////////////////js 自定义导出 excel///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////js 自定义导出 excel
var ZT= this.options.form.getWidgetByName("zt").getValue(); //添加参数用,不加参数可以不写
//var RIQI = this.options.form.getWidgetByName("Riqi").getValue();
var REPORT_URL='${servletURL}?reportlet=目录/报表名.cpt&zt='+ZT+'&format=excel';
window.location=encodeURI(REPORT_URL);
要么你做一个包含全部列的报表,
要么你这个报表做成动态参数列,默认是显示全部列的,然后你手动选择显示哪几列.
用自定义导出excel 代码就可以正常导出全部列数据.