2012-01-31 42 views
1

我是新的Jquery DataTables我第一次使用它們,我已經在我的jsp頁面中實現了我使用的是struts 1.3,但它不工作沒有任何進展我不理解實際發生的事情它只是只顯示數據,沒有過濾器,無分頁,不排序,沒有搜索欄沒有快到 我已經下載數據表1.8JQuery DataTables不工作在我的Struts應用程序

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 
<title>Room List</title> 
<script type="text/javascript" charset="utf-8" src="DataTables/media/js/jquery.js">  </script> 
    <script type="text/javascript" charset="utf-8"  src="DataTables/media/js/jquery.dataTables.js"></script> 


<link href="DataTables/media/css/Beautiful.css" rel="stylesheet" type="text/css" /> 

<script type="text/javascript"> 
$(document).ready(function() { 
$('#room_id').dataTable(); 

}); 
</script> 
</head> 

<body> 
<%@include file="Header.jsp" %> 
<% 
ArrayList list = (ArrayList)request.getAttribute("list"); 

%> 
<table id="room_id" border="0" cellpadding="0" cellspacing="0" class="pretty"> 
    <tr> 
    <td>Code</td> 
    <td>Name</td> 
    <td>Floor Name</td> 
    <td>Location Name</td> 
    </tr> 
    <% 
    for (int index=1; index<list.size(); index++) { 
    RoomBean room =(RoomBean)list.get(index); 
    %> 
<tr> 
<td> 
<%=room.getcode()%> 
</td> 
<td> 
<%=room.getname() %> 
</td> 
<td> 
<%=room.getfloorname() %> 
</td> 
<td> 
<%=room.getlocationname() %> 
</td> 
</tr> 
<% } %> 
</table> 
</body> 

</html> 

其中IAM做錯了我沒有understaning 任何幫助將一個偉大的提示我,因爲我第一次使用它

回答

0

你有錯誤地形成表。要應用datatables插件,您的表格必須包含行和列的行和列。

Regards, Jovan

相關問題