Completed
Last Updated: 25 Mar 2022 10:03 by ADMIN
Release LIB 2022.1.328 (28 March 2022)
The access keys set to the Header property of the RadMenuItem element are not showing when it is opened via keyboard.
Completed
Last Updated: 27 Oct 2021 13:35 by ADMIN
Release LIB 2021.3.1101 (1 Nov 2021)

When opening the ContextMenu and hovering over the first Item no Tooltip is displayed. Only when you move the mouse over another MenuItem on the same ContextMenu and then back to the first one the Tooltip gets displayed.

As a workaround, the telerik:RadToolTipService.ToolTipContent property can be used:

<telerik:RadMenuItem Header="I should display a tooltip" telerik:RadToolTipService.ToolTipContent="I am the tooltip that never shows" />

The template of the tooltip can also be modified to match the default tooltip style:

    <Style TargetType="telerik:RadMenuItem" BasedOn="{StaticResource RadMenuItemStyle}">
        <Setter Property="telerik:RadToolTipService.ToolTipContentTemplate">
            <Setter.Value>
                <DataTemplate>
                    <Border
                                Background="{telerik:FluentResource ResourceKey=PrimaryBackgroundBrush}"
                                BorderBrush="{telerik:FluentResource ResourceKey=BasicBrush}"
                                BorderThickness="1"
                                SnapsToDevicePixels="True">
                        <ContentPresenter Content="{Binding}" Margin="5"/>
                    </Border>
                </DataTemplate>
            </Setter.Value>
        </Setter>
    </Style>

Completed
Last Updated: 12 Apr 2017 11:49 by ADMIN
Available in LIB version 2017.1.410 , it will be also available in the R2 2017 Release. 
Completed
Last Updated: 02 Mar 2018 13:59 by ADMIN
Completed
Last Updated: 11 Dec 2013 09:19 by ADMIN