我正在使用jquery在jsp中使用jtable插件进行分页
以下代码是用jsp编写的,这里所有要在分页中显示的字段都是硬编码的,这对于获取和显示数据库中具有相同列的表中的数据是正常的,但如果我试图获取来自另一个表的数据,其中列可能在数量或类型上不同,它不会显示内容,所以我试图根据所选查询中的列给出这些字段名称。我将把这个jsp的所有列名称作为列表< / p>
like list=[Id,name,salary,Doj,Dob,Ctc];
这个列表可能因表而异,所以我想在列表中将这些值动态地作为以下代码中的字段给出,比如使用迭代器之类的东西,我对jquery来说是全新的。 除了从列表中动态获取字段值的一些建议
这是jsp的代码,它使用ajax调用从数据库中检索数据
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<!-- Include one of jTable styles. -->
<link href="css/metro/crimson/jtable.css" rel="stylesheet"
type="text/css" />
<link href="css/jquery-ui-1.10.3.custom.css" rel="stylesheet"
type="text/css" />
<!-- Include jTable script file. -->
<script src="js/jquery-1.8.2.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.10.3.custom.js" type="text/javascript"></script>
<script src="js/jquery.jtable.js" type="text/javascript"></script>
<script type="text/javascript">
function TxtValue()
{
var Selectedval = document.getElementById("data");
document.getElementById("name").value = Selectedval.value;
}
/************** jquery fields are hardcoded here*******************************/
$(document).ready(function() {
$('#PersonTableContainer').jtable({
title : 'Table of people',
paging : true, //Enable paging
pageSize : 10, //Set page size (default: 10)
actions : {
listAction : 'CRUD?action=list',
createAction : 'CRUD?action=create',
updateAction : 'CRUD?action=update',
deleteAction : 'CRUD?action=delete'
},
fields : {
EMPLOYEE_CODE : {
title : 'EMPLOYEE_CODE ',
key : true,
list : true,
create : true,
edit : false
},
NAME : {
title : 'NAME',
width : '30%',
edit : true
},
CC : {
title : 'CC',
width : '30%',
edit : true
},
LOADED_COST_PA : {
title : 'LOADED_COST_PA ',
width : '20%',
edit : true
},
LOADED_COST_PM : {
title : 'LOADED_COST_PM ',
width : '30%',
edit : true
},
DOJ : {
title : 'DOJ ',
width : '30%',
edit : true
},LOB : {
title : 'LOB ',
width : '30%',
edit : true
},LOADED_COST_PA : {
title : 'LOADED_COST_PA ',
width : '30%',
edit : true
},ONSITE_MANAGER : {
title : 'ONSITE_MANAGER ',
width : '30%',
edit : true
}
}
});
//Re-load records when user click 'load records' button.
$('#LoadRecordsButton').click(function (e) {
e.preventDefault();
$('#PersonTableContainer').jtable('load', {
name: $('#name').val(),
id: $('#id').val()
});
});
//Load all records when page is first shown
$('#LoadRecordsButton').click();
// $('#PersonTableContainer').jtable('load');
/***********************************************/
$('#id').change(function(event) {
var columnName = $("select#id").val();
$.get('CRUD?action=columnFilter', {
columnName : columnName
}, function(response) {
var select = $('#data');
select.find('option').remove();
$.each(response, function(index, value) {
$('<option>').val(value).text(value).appendTo(select);
});
});
});
/*******************************************/
});
</script>
</head>
<body>
<%!
public String tablename = "";
%>
<%
HttpSession sec = request.getSession();
List columnsList=(List)sec.getAttribute("columnsList");
%>
<c:import url="manage_data.jsp" />
<br/>
<div class="filtering"
style="width: 60%; margin-right: 20%; margin-left: 20%; text-align: center;">
<form>
Search By: <select id="id" name="table">
<option selected="selected" value="default">Complete Data</option>
<c:forEach var="str" items="${columnsList}">
<option>${str}</option>
<br>
</c:forEach>
</select>
Select Data:
<select id="data" onclick ="TxtValue()" >
<option selected="selected">--NONE--</option>
<option></option>
</select>
Enter Value: <input type="text" name="name" id="name" />
<button type="submit" id="LoadRecordsButton">Load records</button>
</form>
<div id="PersonTableContainer"></div>
</div>
</body>
</html>
答案 0 :(得分:3)
我已经找到了这样做的方法,我发布此信息是为了参考正在搜索此内容的其他人
<%@page import="java.util.ArrayList"%>
<%@page import="java.util.List"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Setup and Load Data to jTable using Servlets and JSP</title>
<!-- Include one of jTable styles. -->
<link href="css/metro/crimson/jtable.css" rel="stylesheet" type="text/css" />
<link href="css/jquery-ui-1.10.3.custom.css" rel="stylesheet" type="text/css" />
<!-- Include jTable script file. -->
<script src="js/jquery-1.8.2.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.10.3.custom.js" type="text/javascript"></script>
<script src="js/jquery.jtable.js" type="text/javascript"></script>
<script type="text/javascript">
<% List<String> strList = new ArrayList<String>();
strList.add("one");
strList.add("two");
strList.add("three"); %>
var jsArray = [<% for (int i = 0; i < strList.size(); i++) { %>"<%= strList.get(i) %>"<%= i + 1 < strList.size() ? ",":"" %><% } %>];
var fields = {
};
var arrayLength = jsArray.length;
for(var i=0;i<arrayLength;i++)
{
fields[jsArray[i]] = {
title: jsArray[i],
width: '40%'
};
}
$(document).ready(function () {
$('#PersonTableContainer').jtable({
title: 'Table of people',
actions: {
listAction: 'CRUDController?action=list',
createAction:'CRUDController?action=create',
updateAction: 'CRUDController?action=update',
deleteAction: 'CRUDController?action=delete'
},
fields:fields
});
$('#PersonTableContainer').jtable('load');
});
</script>
</head>
<body>
<div style="width:60%;margin-right:20%;margin-left:20%;text-align:center;">
<div id="PersonTableContainer"></div>
</div>
</body>