I notice when I style my page where I have a DIV to the left of the grid that the RadGrid will have it's white background take up the entire horizontal space, eating up space to the left (see attached file).
Below is my ASPX code:
<div style="float: left; margin-top: 0px; padding-top: 0px; width: auto">
<ul style="list-style: none">
<li>
<asp:Label ID="lblFromDate" runat="server" Text="From:" AssociatedControlID="rdpFromDate" />
<telerik:raddatepicker id="rdpFromDate" runat="server"/>
</li>
<li style="margin-top: 20px; padding-top: 20px">
<asp:Label ID="lblToDate" runat="server" Text="To: " AssociatedControlID="rdpToDate"/>
<telerik:raddatepicker id="rdpToDate" runat="server"/>
</li>
<li>
<telerik:radtreeview id="rtvCustomer" runat="server" height="400px" width="200px" style="float: left; margin-top: 10px" />
</li>
<li>
<asp:Button ID="btnSearch" runat="server" Text="Search" OnClick="btnSearch_Click" style="margin-top: 10px" />
</li>
</ul>
</div>
<telerik:radgrid id="rgTransactions" runat="server" gridlines="None" editmode="InPlace"
showstatusbar="True" allowpaging="True" onneeddatasource="rgTransactions_NeedDataSource"
onupdatecommand="rgTransactions_UpdateCommand" autogeneratecolumns="False">