Just testing a new installation of Jtablesort.
Coding is very simple:-
<?php // no direct access
defined('_JEXEC') or die('Restricted access'); ?>
{arijtablesorter defaultSorting="0:ASC"}
<table cellpadding="0" cellspacing= "10">
<thead>
<tr>
<th>Name</th>
<th>Level</th>
</tr>
</thead>
<tbody>
<?php
foreach ($this->rows as $row)
{
?>
<tr>
<td><?php echo $row['name']; ?></td>
<td><?php echo $row['misc']; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
{/arijtablesorter}
plugin is enabled and all parameters except width are set to yes.
But no result!!
Am I missing something fundamental?