Jquery Datatables not working in my Struts Application

Jquery Datatables not working in my Struts Application

zohebzoheb Posts: 3Questions: 0Answers: 0
edited January 2012 in DataTables 1.8
i am new in Jquery DataTables i am first time using them ,i have implemented in my jsp page i am using struts 1.3 but its not working nothing coming i am not understanding what is actually happening its just showing only data, no filter,no pagination, no sorting ,no search bar nothing is coming
i have downloaded DataTables 1.8

my code



Room List









$(document).ready(function() {
$('#room_id').dataTable();

} );







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

%>


Code
Name
Floor Name
Location Name

<%
for (int index=1; index


<%=room.getcode()%>


<%=room.getname() %>


<%=room.getfloorname() %>


<%=room.getlocationname() %>


<% } %>





where iam doing wrong i am not understaning
any help would a great hint for me as i am using it first time
This discussion has been closed.