Hello,
You can create your own CSS templates in 'CSS Templates' section. If you don't create CSS templates, this section will be empty. Regarding your code, {arisqltablequery} tag can be used only inside {arisqltable} tag. If you want to wrap 'ARI SQL Table' plugin with 'ARI JTable Sorter' plugin, use the next code:
Code: |
{arijtablesorter defaultSorting="1:DESC" zebra="TRUE"}
{arisqltable}
{arisqltablequery}
SELECT Nome as Nome, endereco as Endereco, cidade as cidade, uf as uf, cep as cep, fones as fones
FROM jos_chronoforms_cvnovo
{/arisqltablequery}
{/arisqltable}
{/arijtablesorter}
|
If you want to wrap HTML table with 'ARI JTable Sorter' plugin, use the following code:
Code: |
{arijtablesorter defaultSorting="1:DESC" zebra="TRUE"}
<table>
<thead>
<tr>
<th>Nome</th>
<th>Endereco</th>
<th>cidade</th>
<th>UF</th>
<th>CEP</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nome</td>
<td>Endereco</td>
<td>cidade</td>
<td>uf</td>
<td>cep</td>
</tr>
</tbody>
</table>
{/arijtablesorter}
|
Regards,
ARI Soft