try:
you may also want to pull the paging out side the table.
changed the call to the script as well as id to class...
<link rel="stylesheet"
href="/common/jquery/tablesort/themes/blue/style.css" type="text/css"
media="print, projection, screen" />
<script type="text/javascript"
src="/common/jquery/tablesort/jquery-latest.js"></script>
<script type="text/javascript" src="/common/jquery/jquery.treeview.js"></script>
<!--- <script type="text/javascript"
src="/common/jquery/jquery.js"></script> --->
<script type="text/javascript"
src="/common/jquery/tablesort/jquery.tablesorter.js"></script>
<script type="text/javascript"
src="/common/jquery/jquery.tablesorter.pager.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.tablesorter').tablesorter({sortList:[[0,5],[0,0]], widgets:
['zebra']});
$('.tablesorter').tablesorterPager({container:
$("#pager"),positionFixed: false});
});
</script>
</cfsavecontent>
<cfhtmlhead text="#head#">
</cfoutput>
<table class="tablesorter" border="1" cellspacing="1">
<thead>
<tr>
<th class="header">
ID
</th>
<th class-"header">
Topic
</th>
</tr>
</thead>
<tbody>
<cfoutput query="getIt">
<cfif getIt.recordCount mod 2>
<cfset class="even">
<cfelse>
<cfset class="odd">
</cfif>
<tr class="#class#">
<td>#getIt.lmsID#</td>
<td>#getIt.topic#</td>
</tr>
</cfoutput>
</tbody>
<tfoot>
<tr>
<td colspan="3" id="pager" class="pager">
<cfoutput>
<form>
<img
src="#request.startingURL#style/first.png" class="first"/>
<img
src="#request.startingURL#style/prev.png" class="prev"/>
<input type="text"
class="pagedisplay"/>
<img
src="#request.startingURL#style/next.png" class="next"/>
<img
src="#request.startingURL#style/last.png" class="last"/>
<select class="pagesize">
<option
selected="selected" value="10">10</option>
<option
value="20">20</option>
<option
value="30">30</option>
<option
value="40">40</option>
</select>
</form>
</cfoutput>
</td>
</tr>
</tfoot>
</table>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f
Archive:
http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:275162
Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm
Unsubscribe:
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.5