I am trying to show nicely formatted sql data on my website. The data is coming but it is not sortable and I am getting this error during debug:
Uncaught TypeError: Object [object Object] has no method 'tablesorter'
Here is a link to my page:
livestock.cloudaccess.net/nse-breadth-index.html
and here is the code I'm using:
{arijtablesorter zebra="true" debug="true"}
{arisqltable}
{arisqltablecolumns}
{arisqltablecolumn id="symbol" alias="NSE Symbol" width="30%"}
{/arisqltablecolumn}
{arisqltablecolumn id="close" alias="Closing Price" width="70%"}
{/arisqltablecolumn}
{/arisqltablecolumn}
{/arisqltablecolumns}
{arisqltablequery}
SELECT symbol, close FROM EQDatabase WHERE timestamp = (select timestamp from EQDatabase where symbol like 'RELIANCE' order by timestamp desc limit 1,1)
{/arisqltablequery}
{/arisqltable}
{/arijtablesorter}
Please help