Below is my code. I know that I cannot set the RadGrid to 100% height since
my table row does not have a value. I have been unable to resize on the
client using .get_element.style.height = xxxx. Does anyone know why this
would not be working or another way I can expand the grid to fill the height?
Currently, the grid is only about 30px tall. Thank you in advance.
Joshua
my table row does not have a value. I have been unable to resize on the
client using .get_element.style.height = xxxx. Does anyone know why this
would not be working or another way I can expand the grid to fill the height?
Currently, the grid is only about 30px tall. Thank you in advance.
Joshua
| <body> |
| <form id="form1" runat="server"> |
| <rad:RadScriptManager ID="RadScriptManager1" runat="server" /> |
| <table cellpadding="0" cellspacing="0" border="0" style="table-layout:fixed;width:100%;height:100%;"> |
| <tr style="height:60px;"> |
| <td valign="top" style="position:relative;background-color:steelblue;"> |
| </td> |
| </tr> |
| <tr style="height:100%;"> |
| <td style="position:relative;"> |
| <rad:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="true" Width="100%" style="border:0;"> |
| <MasterTableView TableLayout="Fixed" /> |
| <ClientSettings> |
| <Scrolling AllowScroll="true" UseStaticHeaders="true" /> |
| </ClientSettings> |
| </rad:RadGrid> |
| </td> |
| </tr> |
| </table> |
| </form> |
| </body> |
