Hi:
I have a RaDGrid that has a DIV tag that is above the grid, but the outline border included the DIV tag. Code is as follows:
So the following DIV tags:
Appear as if they are a part of the grid, but I do not want this appearance. Attached is a screenshot...
Phil
I have a RaDGrid that has a DIV tag that is above the grid, but the outline border included the DIV tag. Code is as follows:
<%@ Page Language="VB" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %><script runat="server"> ' Protected Sub personGrid_NeedDataSource(sender As Object, e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles personGrid.NeedDataSource Dim _people As List(Of String) = New List(Of String) From { _ "George Washington", "John Adams", "Thomas Jefferson"} personGrid.DataSource = _people End Sub '</script><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> <Scripts> <asp:ScriptReference Path="Scripts/jquery-1.8.2.min.js" /> </Scripts> </telerik:RadScriptManager> <br /> <div style="width: 100%"> <div style="width: 130px; float: left;">People:</div> <div style="width: 475px; float: left;">...</div> </div> <div style="width: 100%"> <Telerik:RadGrid ID="personGrid" runat="server" GridLines="None" CellSpacing="0"> <MasterTableView AutoGenerateColumns="true"> </MasterTableView> </Telerik:RadGrid> </div> <br /> </form></body></html>So the following DIV tags:
<div style="width: 100%"> <div style="width: 130px; float: left;">People:</div> <div style="width: 475px; float: left;">...</div></div>Phil