Hello,
I am having an issue with items that have too long of names to fit on one line of the RadPanelBar. If you hover over one of these items, the first problem is only the first line is highlited. The second problem is after clicking the item, the second line disappears all together. I have included an example of code that will cause this problem below. Expand the "Items" item, then the "Child Item" and the next item will have the issue.
Thank you in advance,
Ben
I am having an issue with items that have too long of names to fit on one line of the RadPanelBar. If you hover over one of these items, the first problem is only the first line is highlited. The second problem is after clicking the item, the second line disappears all together. I have included an example of code that will cause this problem below. Expand the "Items" item, then the "Child Item" and the next item will have the issue.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> |
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title>Untitled Page</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<asp:ScriptManager ID="ScriptManager1" runat="server" /> |
<div> |
<telerik:RadPanelBar ID="RadPanelBar1" runat="server"> |
<Items> |
<telerik:RadPanelItem runat="server" Text="Items"> |
<Items> |
<telerik:RadPanelItem runat="server" Text="Child Item"> |
<Items> |
<telerik:RadPanelItem runat="server" Text="An Item with a long enough name to need 2 lines"> |
</telerik:RadPanelItem> |
</Items> |
</telerik:RadPanelItem> |
</Items> |
</telerik:RadPanelItem> |
</Items> |
</telerik:RadPanelBar> |
</div> |
</form> |
</body> |
</html> |
Thank you in advance,
Ben