<html>
<head>
<title>FineReport Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<script type="text/javascript">
//cjkEncode方法的实现代码,放在网页head中或者用户自己的js文件中
function cjkEncode(text) {
if (text == null) {
return "";
}
var newText = "";
for (var i = 0; i < text.length; i++) {
var code = text.charCodeAt (i);
if (code >= 128 || code == 91 || code == 93) { //91 is "[", 93 is "]".
newText += "[" + code.toString(16) + "]";
} else {
newText += text.charAt(i);
}
}
return newText;
}
function autoSubmit() {
var num = document.getElementById('diqu').value; //获取form中id=diqu控件的值
var row = document.getElementById('row').value; //获取form中下拉框控件的值
//拼接出最终报表访问路径,并对完整的路径进行编码转换,防止乱码问题
var reportURL = cjkEncode("http://localhost:8075/WebReport/ReportServer?reportlet=fengye.cpt&diqu=" + num + "&row=" + row); //将获取到的参数传递给URL:&diqu 和 &row 两个参数; &row 放到cpt条件属性中使用关联
document.paraForm.action = reportURL; //通过form的name获取表单,并将报表访问路径赋给表单的action
document.paraForm.submit(); //触发表单提交事件
}
</script>
</head>
<body>
<fieldset>
<legend>查询表单:</legend>
<form name="paraForm" method="post" target="reportFrame">
地区:<input type="text" name="di" id="diqu" value="华东"/> //和模模数据集(select * from 订单 where 货主地区='${diqu}')参数名一致
每页显示行数:<select name="row" id="row">
<option value="10">10 </option>
<option value="20">20 </option>
<option value="30">30 </option>
</select>
<input type="button" name="show" value="查询" onClick="autoSubmit()"/>
</form>
</fieldset>
<iframe id="reportFrame" name="reportFrame" width="100%" height="100%" ></iframe> //嵌套报表区域
</body>
</html>
帆软动态分页之嵌套自定义参数据选择行数分页
最新推荐文章于 2024-03-01 15:53:26 发布