JQuery table sorter issue

JQuery table sorter issue


Hi,
Have anyone expeienced issue with jquery table sorter? I am try to sort the
table by number but it does not sort as per numeric values. Code below
<HTML>
<HEAD>
<script type="text/javascript"
src="http://tablesorter.com/jquery-latest.js"></script>
    
    <script type="text/javascript"
src="http://tablesorter.com/jquery.tablesorter.js"></script>
    <script type="text/javascript"
src="http://tablesorter.com/addons/pager/jquery.tablesorter.pager.js"></script>
    <script type="text/javascript"
src="http://tablesorter.com/docs/js/chili/chili-1.8b.js"></script>
    <script type="text/javascript"
src="http://tablesorter.com/docs/js/docs.js"></script>
    <script type="text/javascript"
src="http://tablesorter.com/docs/js/examples.js"></script>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<table id='myTable'>
<thead>
<tr><th>Test Name</th><th>No</th></tr>
</thead>
<tbody>
<tr><td>AUDITTRAIL.UPDATE.PLTOPL.P2</td><td>0 </td></tr>
<tr><td>AUDITTRAIL.UPDATE.PLTOPL.P3</td><td>4 </td></tr>
<tr><td>AUDITTRAIL.UPDATE.PLTOPL.P4</td><td>0 </td></tr>
<tr><td>AUDITTRAIL.UPDATE.ZTSTOPL.*</td><td>0 </td></tr>
<tr><td>AUDITTRAIL.UPDATE.ZTSTOPL.P1</td><td>41</td></tr>
<tr><td>AUDITTRAIL.UPDATE.ZTSTOPL.P2</td><td>0 </td></tr>
<tr><td>AUDITTRAIL.UPDATE.ZTSTOPL.P3</td><td>0 </td></tr>
<tr><td>AUDITTRAIL.UPDATE.ZTSTOPL.P4</td><td>0 </td></tr>
<tr><td>EQMPRIMO.PD.PD.T1</td><td>5 </td></tr>
<tr><td>EQPRIMO.PDRESP.PRH.T1</td><td>52 </td></tr>
</tbody>
</table>
<script language="javascript">
$("#myTable").tablesorter();</script>
</body>
</html>
Let me know what is wrong or the right forum where should I can get help on
this.
Thanks
--
View this message in context: http://old.nabble.com/JQuery-table-sorter-issue-tp26347403s27240p26347403.html
Sent from the jQuery Dev List mailing list archive at Nabble.com.
--