or
<telerik:RadGrid ID="grdBrokers" runat="server" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True" OnNeedDataSource="grdBrokers_NeedDataSource" AllowFilteringByColumn="True" EnableLinqExpressions="False"
OnDetailTableDataBind="grdBrokers_DetailTableDataBind" Skin="Office2007"> <MasterTableView CommandItemDisplay="Top" DataKeyNames="BrokerOfficeID" Height="100%" > <PagerStyle Mode="NextPrevAndNumeric" Position="Bottom" /> <HeaderStyle HorizontalAlign="Center" /> <RowIndicatorColumn> <HeaderStyle Width="20px" HorizontalAlign="Center" /> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px" HorizontalAlign="Center" /> </ExpandCollapseColumn> <DetailTables> <telerik:GridTableView DataKeyNames="BrokerContactID" Name="BrokerContacts" Width="100%" AllowFilteringByColumn="false" CommandItemDisplay="Top"> <Columns> <telerik:GridBoundColumn SortExpression="BrokerOfficeID" HeaderText="Office ID" HeaderButtonType="TextButton" DataField="BrokerOfficeID" UniqueName="BrokerOfficeID" AllowFiltering="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn SortExpression="BrokerContactID" HeaderText="Contact ID" HeaderButtonType="TextButton" DataField="BrokerContactID" UniqueName="BrokerContactID" AllowFiltering="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn SortExpression="Name" HeaderText="Contact Name" HeaderButtonType="TextButton" DataField="Name" UniqueName="Name" AllowFiltering="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn SortExpression="Email" HeaderText="Email" HeaderButtonType="TextButton" DataField="Email" UniqueName="Email" AllowFiltering="false"> </telerik:GridBoundColumn> <telerik:GridTemplateColumn AllowFiltering="false" HeaderText="Edit" UniqueName="TemplateEditColumn"> <HeaderStyle Width="30px" HorizontalAlign="Center" /> <ItemStyle Width="30px" HorizontalAlign="Center" /> <ItemTemplate> <a href="#" onclick="ShowEditBrokerContactForm('<%# DataBinder.Eval(Container.DataItem, "BrokerOfficeID") %>','<%# DataBinder.Eval(Container.DataItem, "BrokerContactID") %>');"><img id="Img1" alt="" src ="~/App_Themes/Images/edit.gif" runat="server" border="0" /></a> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> <CommandItemTemplate> <a href="#" onclick="return ShowInsertBrokerContactForm('<%# get id of parent row here %>);">Add New Broker Contact</a> </CommandItemTemplate> </telerik:GridTableView> </DetailTables> <Columns> <telerik:GridBoundColumn HeaderText="ID" DataField="BrokerOfficeID" FilterControlWidth="30px" SortExpression="BrokerOfficeID" UniqueName="BrokerOfficeID" HeaderButtonType="TextButton"> <HeaderStyle Width="30px" /> <ItemStyle Width="30px" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="Broker Office" DataField="Name" FilterControlWidth="300px" SortExpression="Name" UniqueName="Name" HeaderButtonType="TextButton"> <HeaderStyle Width="300px" /> <ItemStyle Width="300px" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="Company Code" DataField="CompanyCode" FilterControlWidth="35px" SortExpression="CompanyCode" UniqueName="CompanyCode" HeaderButtonType="TextButton"> <HeaderStyle Width="35px" /> <ItemStyle Width="35px" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn AllowFiltering="false" HeaderText="Edit" UniqueName="TemplateEditColumn"> <HeaderStyle Width="30px" HorizontalAlign="Center" /> <ItemStyle Width="30px" HorizontalAlign="Center" /> <ItemTemplate> <a href="#" onclick="ShowEditBrokerForm('<%# DataBinder.Eval(Container.DataItem, "BrokerOfficeID") %>');"><img alt="" src ="~/App_Themes/Images/edit.gif" runat="server" border="0"></a> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> <CommandItemTemplate> <a href="#" onclick="return ShowInsertBrokerForm();">Add New Broker</a> </CommandItemTemplate> </MasterTableView> <ClientSettings AllowExpandCollapse="true" > </ClientSettings> <GroupingSettings CaseSensitive="false" /> </telerik:RadGrid> </telerik:RadPageView>function ShowEditBrokerContactForm(id1,id2) { window.radopen("EditBrokerContact.aspx?BrokerOfficeID=" + id1 + "&BrokerContactID=" + id2, "UserListDialog"); return false; } function ShowInsertBrokerContactForm(id) { window.radopen("EditBrokerContact.aspx?BrokerOfficeID=" + id, "UserListDialog"); return false; }Hi,
I'm using the RadPanelBar
It's being used as a breadcrumb so there are no links to go to. I can't remove the cursor (href links) hand and hovers. There is a real obvious hover on the heading (track you progress).
Also there is a weird white line below the heading that I can't get rid of.
Before I posted my problem I did check all the boards and I couldn’t find anything discussing removing links and hovers.
Here is a link to the files:
http://www.websitedesigninnewyork.com/misc/PattiSmallProject.zip
I hope someone can help. I’ve been trying to figure this out for two days:(. Thanks for any help.
Patti