Hello,
Regarding your questions:
1 and 2. You can read about "jQuery UI" styles
here and choose appropriate styles for table, table row and table cell.
Here you can generate your own themes. Only one problem, currently the component doesn't contain plugin which can load theme from "ARI JQuery UI Loader" plugin, but you can submit feature
here and we'll implement this plugin.
3. "ARI SQL Table" generate simple HTML table in the following format:
Code: |
<table>
<!-- Header -->
<thead>
<tr>
<th>Col 1</th>
<th>Col 2</th>
...
<th>Col N</th>
</tr>
</thead>
<!-- Data -->
<tbody>
<tr>
<td>Col 1</td>
<td>Col 2</td>
...
<td>Col N</td>
</tr>
</tbody>
</table>
|
You can specify CSS class for <table> tag with help 'className' parameter of {arisqltable} plugin tag. You can also specify CSS classes for necessary column, use for this purpose 'className' and 'headerClassName' parameters of {arisqltablecolumn} tag.
Regards,
ARI Soft