How can you force the width of a datatable ? Link to datatable example
I tried creating a table with a fixed width 350px and had a left column using 20% of width and the datatable in the right column. This doesn't work though as the datatable is pushing table to be bigger than 350px wide and also the left column is smaller than 20%
<table width="350">
<tr>
<td width="20%"> Left TD <td>
<td width="80%"> Datatable </td>
</tr>
</table>