I'm working with the RadTreeView, within an HTML table;
An objective for this .aspx web page is to have the RadTreeView resize, according to the resizing of a .aspx web page;
For example, if the width or height of the .aspx web page is resized to a point where the .aspx web page has less width or less height than the RadTreeView itself - the RadTreeView will resize accordingly with scroll bars;
Hopefully the description provides a clear understanding; Best regards - Rob
An objective for this .aspx web page is to have the RadTreeView resize, according to the resizing of a .aspx web page;
For example, if the width or height of the .aspx web page is resized to a point where the .aspx web page has less width or less height than the RadTreeView itself - the RadTreeView will resize accordingly with scroll bars;
Hopefully the description provides a clear understanding; Best regards - Rob
<table style="width: 100%;"> <tr> <td align="left" valign="top"> <telerik:RadTreeView ID="RadTreeView1" runat="server" OnNodeExpand="RadTreeView1_NodeExpand" ForeColor="Black" Font-Names="Microsoft Sans Serif" onnodeclick="RadTreeView1_NodeClick" Height="600px" Width="400px" Font-Size="Medium"> </telerik:RadTreeView> </td> <td> </td> <td align="right" valign="top" width="100%"> <iframe runat="server" id="myPDF" height="600" width="100%" visible="false" ></iframe> </td> </tr> <tr> <td colspan="2" class="style1" height="100px"> <asp:Label ID="Label1" runat="server" Text="" ForeColor="#0D141A"></asp:Label> </td> </tr> <tr> <td align="center" colspan="3" valign="bottom"> <asp:Image ID="FALogo" runat="server" ImageUrl="~/Images/FA_Logo_600x289.png"/> <asp:Image ID="imgContactUs" runat="server" ImageUrl="~/Images/ContactUs.png" visible="false"/> </td> </tr> </table>