|
发表于 2014-5-23 15:32:13
|
显示全部楼层
修改org.jeecgframework.web.cgreport.util.CgReportQueryParamUtil
34行:
String value =request.getParameter(filedName.toLowerCase());
修改cgreportlist.ftl
function ${config_id}Listsearch() {
var queryParams = $('#${config_id}List').datagrid('options').queryParams;
var str;
$('#${config_id}Listtb').find(":input").each(function () {
queryParams[$(this).attr('name')] = $(this).val();
});
$('#${config_id}List').datagrid({url: 'cgReportController.do?datagrid&configId=${config_id}', queryParams: queryParams, pageNumber: 1});
} |
|