W
williamfrenette
I have a little challenge for javascript beast. I'm looking for a html
table that could be sizable by the user. If you what an example juste
go there http://www.activewidgets.com/ You see that by clicking the
headers you can resize the column. If they can do it with some java, we
should be able to find a way! So lets start with a simple table :
<html>
<head>
<title></title>
</head>
<body ms_positioning="gridlayout">
<table>
<tbody>
<tr id="tr0">
<th id="th1">head 1</th>
<th id="th2">head 2</th>
<th id="th3">head 3</th>
</tr>
<tr id="tr1">
<td id="td1">1</td>
<td id="td2">2</td>
<td id="td3">3</td>
</tr>
<tr id="tr2">
<td id="td4">4</td>
<td id="td5">5</td>
<td id="td6">6</td>
</tr>
<tr id="tr3">
<td id="td7">7</td>
<td id="td8">8</td>
<td id="td9">9</td>
</tr>
</tbody>
</table>
</body>
</html>
Thanks
table that could be sizable by the user. If you what an example juste
go there http://www.activewidgets.com/ You see that by clicking the
headers you can resize the column. If they can do it with some java, we
should be able to find a way! So lets start with a simple table :
<html>
<head>
<title></title>
</head>
<body ms_positioning="gridlayout">
<table>
<tbody>
<tr id="tr0">
<th id="th1">head 1</th>
<th id="th2">head 2</th>
<th id="th3">head 3</th>
</tr>
<tr id="tr1">
<td id="td1">1</td>
<td id="td2">2</td>
<td id="td3">3</td>
</tr>
<tr id="tr2">
<td id="td4">4</td>
<td id="td5">5</td>
<td id="td6">6</td>
</tr>
<tr id="tr3">
<td id="td7">7</td>
<td id="td8">8</td>
<td id="td9">9</td>
</tr>
</tbody>
</table>
</body>
</html>
Thanks