Completed
Last Updated: 07 Aug 2024 15:12 by ADMIN
Release 2024.3.806 (2024 Q3)
Holger
Created on: 05 Jul 2024 11:25
Category: Forms/Dialogs/Templates
Type: Bug Report
1
RadMarkupDialog: The tooltip text of the Font and FontSize DropDownListElements is not localized
The tooltip text of the font and font size DropDownListElements is not localized.
1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 05 Jul 2024 12:09

Hi Holger,

Thank you for reporting this behavior. As a workaround, we can manually access the RadDropDownElements and change the ToolTip text property depending on the current localization.

var fontGroup = ((ribbon.CommandTabs[0] as RibbonTab).Items[1] as RadRibbonBarGroup).Items[0] as RadRibbonBarButtonGroup;
var fontDropDownList = fontGroup.Items[0] as RadDropDownListElement;
fontDropDownList.ToolTipText = "aaaa";

var fontSizeGroup = ((ribbon.CommandTabs[0] as RibbonTab).Items[1] as RadRibbonBarGroup).Items[1] as RadRibbonBarButtonGroup;
var fontSizeDropDownList = fontSizeGroup.Items[1] as RadDropDownListElement;
fontSizeDropDownList.ToolTipText = "bbbbb";

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.