or
| Protected Sub _assignedRefsRadGrid_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles _assignedRefsRadGrid.ItemCreated |
| If (TypeOf e.Item Is GridHeaderItem) Then |
| Dim headerItem As GridHeaderItem = e.Item |
| For Each column As GridColumn In _assignedRefsRadGrid.MasterTableView.RenderColumns |
| If ((Not TypeOf column Is GridExpandColumn) And (Not TypeOf column Is GridRowIndicatorColumn)) Then |
| Dim hdr As LinkButton = headerItem(column.UniqueName).Controls(0) |
| RadToolTipManager1.TargetControls.Add(hdr.ClientID, True) |
| End If |
| Next |
| End If |
| End Sub |
| <tr> |
| <td style="border-bottom: black 1px solid; width: 445px;"> |
| <telerik:RadEditor ID="RadEditor1" runat="server" Width="100%" Height="150px" Style="height: 100%" |
| ToolsFile="RadControls/Editor/BasicTools.xml" Skin="Vista" EditModes="Design" |
| EnableResize="False" EnableTheming="True" StripFormattingOptions="AllExceptNewLines" |
| ToolbarMode="Default" ToolsWidth="50px" OnClientPasteHtml="OnClientPasteHtml"> |
| </telerik:RadEditor> |
| </td> |
| </tr> |
| <root> |
| <tools name="MainToolbar" dockable="false" enabled="true"> |
| <tool name="FindAndReplace" /> |
| <tool separator="true"/> |
| <tool name="Undo" /> |
| <tool name="Redo" /> |
| <tool separator="true"/> |
| <tool name="Cut" /> |
| <tool name="Copy" /> |
| <tool name="Paste" shortcut="CTRL+!"/> |
| <tool separator="true"/> |
| <tool name="JustifyLeft" /> |
| <tool name="JustifyCenter" /> |
| <tool name="JustifyRight" /> |
| <tool name="JustifyFull" /> |
| <tool name="JustifyNone" /> |
| <tool separator="true"/> |
| <tool name="Indent" /> |
| <tool name="Outdent" /> |
| <tool separator="true"/> |
| <tool name="InsertOrderedList" /> |
| <tool name="InsertUnorderedList" /> |
| <tool separator="true"/> |
| <tool name="LinkManager" shortcut="CTRL+K"/> |
| <tool name="Unlink" shortcut="CTRL+SHIFT+K"/> |
| <tool separator="true"/> |
| <tool name="Bold" /> |
| <tool name="Italic" /> |
| <tool name="Underline" /> |
| <tool separator="true"/> |
| <tool name="InsertTable" /> |
| <tool name="ForeColor" /> |
| <tool separator="true"/> |
| <tool name="FontName"/> |
| <tool name="RealFontSize"/> |
| </tools> |
| <module name="RadEditorNodeInspector" dockingZone="Module" enabled="true" visible="true" dockable="true" /> |
| </root> |
In vertical mode, there seems to be a space at the end of each menu item when hovering over the item. My code:
<
telerik:RadMenu ID="mnuSubMain" runat="server" Flow="Vertical" Width="100%"></telerik:RadMenu>
The menu resides inside a <table> with a fixed width of 160px. Here's the screen shot:
<img src="http://www.caldwellweb.com/sshot.gif" alt="">
I've tried adjusting the vertical css with an override and testing with different widths and parent containers.
Any help would be great. Thanks.
| .RadPanelBar_Default .rpGroup { |
| font-family: Verdana,arial !important; |
| } |
| .RadPanelBar_Default .rpChildGroup { |
| font-family:Verdana,arial !important; |
| } |