Hello,
Yes, you can use for this purpose CSS and 'widthFixed' parameter of 'ARI JTableSorter' plugin. For example, if you want that the first colemn have 100px width, you can use the following code:
Code: |
{arijtablesorter widthFixed="false"}
<table>
<thead>
<tr>
<th style="width: 100px;">column1</th>
<th>column2</th>
<th>column3</th>
</tr>
</thead>
<tbody>
<tr>
<td>content1</td>
<td>content2</td>
<td>content3</td>
</tr>
<tr>
<td>content1</td>
<td>content2</td>
<td>content3</td>
</tr>
</tbody>
</table>
{/arijtablesorter}
|
Regards,
ARI Soft