Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

tablekit javascript library not sorting in jsp

Status
Not open for further replies.

albertkao

Programmer
Feb 3, 2010
5
CA
I downloaded the tablekit javascript library and put it in the js
directory which is in the jsp directory.
i.e. the directory is
C:\workspace\com.mycomp.data.war\WEB-INF\jsp\js
The jsp page is as follows and display correctly with FF and chrome on
Windows Vista.
However, the column of the page is not sorted by clicking on the
column.
i.e. the tablekit javascript library sorting function does not work
on the web page generated by jsp.

<html xmlns=" <body>
<table border="1" class="sortable resizable"
style="width:100%;background-color:#FFA69C;border-collapse:
collapse">
<thead>
<tr>
<td colspan="2">
<h3 style="text-align:center">Data</h3>
</td>
</tr>
<tr>
<th class="sortfirstdesc" id="data">Data</th>
<th id="message">Message</th>
</tr>
</thead>
<tbody>
<c:forEach items="${model.datas}" var="data">
<tr>
<td> <style="font-family:monospace">${data.id}
</td>
<td> <style="font-family:monospace">${data.message}
</td>
</tr>
</c:forEach>
</tbody>
</table>
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/fabtabulous.js"></script>
<script type="text/javascript" src="js/tablekit.js"></script>
</body>
</html>
 
Why not post a URL to the page, as we a) have no idea what your server-side code is, and b) have no idea what's in your JS files.

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

Dan's Page [blue]@[/blue] Code Couch:
Code Couch Tech Snippets & Info:
 
Having said that, have you looked to see if you have any JS errors in any browser?

Also, does your page validate (I bet it doesn't!) ?

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

Dan's Page [blue]@[/blue] Code Couch:
Code Couch Tech Snippets & Info:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top