T
tshad
I have a table in my panel that is sized to the size of the window with 3
columns (40%, 30% and 30%).
As the window is resized the columns resized, which is what I want.
But I want to have a minimum size the Table can be shrunk to as all the
controls get out of what if I get less that about 800px.
Is there there a way to tell the table to resize when the window is greater
than 800px and stop when the window gets less than 800px? I realize that
the table will then run off the end of the window and would have to scroll
left and right but that is fine.
At the moment the table is essentially set up as:
<aspanel ID="mFilterPanel" runat="server">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td class="ColumnWidth40" >
</td>
<td class="ColumnWidth30">
</td>
<td class="ColumnWidth30">
</td>
</tr>
</table>
</aspanel>
Thanks,
Tom
columns (40%, 30% and 30%).
As the window is resized the columns resized, which is what I want.
But I want to have a minimum size the Table can be shrunk to as all the
controls get out of what if I get less that about 800px.
Is there there a way to tell the table to resize when the window is greater
than 800px and stop when the window gets less than 800px? I realize that
the table will then run off the end of the window and would have to scroll
left and right but that is fine.
At the moment the table is essentially set up as:
<aspanel ID="mFilterPanel" runat="server">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td class="ColumnWidth40" >
</td>
<td class="ColumnWidth30">
</td>
<td class="ColumnWidth30">
</td>
</tr>
</table>
</aspanel>
Thanks,
Tom