Is it possible to combine columns with fixed pixel widths and columns with percent widths in the same grid?
I have a sample page that illustrates what I need to do here :
http://hotel1g3.clickbase.no/eo/testsite/sample.php
The table is produced with regular html. Here’s the source :
<div style="width:60%">
<table width="100%" border="1">
<tr>
<th width="22"></th>
<th>Name</th>
<th width="30%">Address</th>
<th width="78">DoB</th>
</tr>
<tr>
<td width="22"><img src="../icons/6.gif" /></td>
<td>Joe Smith</td>
<td width="30%">Highway 66, USA</td>
<td width="78">01.01.1980</td>
</tr>
<tr>
<td width="22"><img src="../icons/18.gif" /></td>
<td>Jane Doe</td>
<td width="30%">Via Dolorosa, Jerusalem</td>
<td width="78">02.11.1977</td>
</tr>
</table>
</div>
There are 2 columns that should never resize: the icon column and the DoB column.
The Address column should always resize to 30% of the total grid width.
The Name column should take up whatever space is left.
Is this possible to achieve with dhtmlxGrid? Do I need to write a custom resize event?