Dynamic Panel

dominique

New member
Joined
Aug 5, 2006
Messages
1
Programming Experience
Beginner
Hello,

I am trying to fix the size of a Dashboard which is called through a Dynamic Panel:
HTML:
<td runat="server" id="tdFlyoutMain" class="FlyoutMain" style="BORDER-RIGHT: #aaaaaa 1px solid" vAlign="top">
<table>
<tr>
<td width="1%" height="1"><aw:DynamicPanel id="dpDash" runat="server" Command="dashboard" refreshPeriod="120"></aw:DynamicPanel></td>
</tr>
</table>
</td>
in the file called by this I don't see any line in the XML code...

I tried to use the parameter width but it is not working the field will picked the size of the text inserted in the field... it will push the right pane away of the screen..

Thanks,
Dom
 
Last edited by a moderator:
instead of using the width tag in the dynamic panel tags, try using the css version instead.

VB.NET:
<td runat="server" id="tdFlyoutMain" class="FlyoutMain" style="BORDER-RIGHT: #aaaaaa 1px solid" vAlign="top">
<table>
<tr>
<td width="1%" height="1"><aw:DynamicPanel id="dpDash" runat="server" Command="dashboard" refreshPeriod="120" style="width: 100px;height: 50px"></aw:DynamicPanel></td>
</tr>
</table>
</td>
 
Last edited:
Back
Top