Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408
Make the MoveSelectionCommandParameter class public so one can easily access its parameters. 
Completed
Last Updated: 13 Mar 2024 09:44 by ADMIN
Release 2024.1.219 (Preview)
Provide API that allows setting the width of the caret.
Completed
Last Updated: 18 Dec 2023 06:53 by ADMIN
Release LIB 2023.3.1218 (18 Dec 2023)
The drag-and-drop logic currently expects the different RadDocking instances to be hosted in one Window element, more specifically, in the MainWindow of the application.

We could add support for different instances being hosted in separate Window elements that will support dragging and dropping operations.
Completed
Last Updated: 27 Nov 2023 06:23 by ADMIN
Release LIB 2023.3.1127 (27 Nov 2023)
This should be similar to the GetContainerForItemOverride method that allows you to replace the auto-generated container of an items control (like ListBox for example). 

The new method should return an AppointmentItem and the developer should be able to use it in order to create a custom implementation of AppointmentItem.

Completed
Last Updated: 06 Nov 2023 11:58 by ADMIN
Release R3 2023 SP1
Update the FitColumnWidthToContent method to return the measured width.
Completed
Last Updated: 02 Nov 2023 07:26 by ADMIN
Release LIB 2023.3.1106 (6 Nov 2023)
Created by: Stenly
Comments: 0
Category: SvgImage
Type: Feature Request
0
Add API to allow setting a string as an SVG image.
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Created by: Felix
Comments: 0
Category: SyntaxEditor
Type: Feature Request
4
Currently the Caret of the SyntaxEditor does not behave like Caret in MS TextBox/ RichTextBox when IME is opened - IME opens on the bottom right part of the screen instead of below the caret. Also some input issues when selection is done in the IME should be addressed for a full support of this feature.
Completed
Last Updated: 22 Aug 2023 11:59 by ADMIN
Release LIB 2023.2.904 (4 Sep 2023)
ArgumentException when using invalid regex in the find dialog
Completed
Last Updated: 12 Jul 2023 08:52 by ADMIN
Release R2 2023 SP1
ArgumentException is thrown when mixed typed values are presented in the ItemsSource. For example, if you use an enum type and present an additional numeric value that is not presented in the corresponding enum definition.

The exception message is the following: System.ArgumentException: 'The value '102' is not a valid value for the enum 'FilterOperator'.'

To work this around, avoid using mixed typed values in the ItemsSource.

 
Completed
Last Updated: 13 Jul 2023 08:43 by ADMIN
Release R2 2023 SP1
Created by: Martin Ivanov
Comments: 0
Category: SyntaxEditor
Type: Feature Request
1

Localize the tooltips for the match case button, the match word button and the use regular expression button.

Currently, the tooltips of the buttons are using hardcoded strings in English.

To translate the tooltips, you can get the corresponding buttons on load of the syntax editor control and replace their tooltips manually.

private void syntaxEditor_Loaded(object sender, RoutedEventArgs e)
{
	var buttons = this.syntaxEditor.ChildrenOfType<RadToggleButton>();
	var matchCaseButton = buttons.FirstOrDefault(x => x.Name == "PART_MatchCaseButton");
	var matchWordButton = buttons.FirstOrDefault(x => x.Name == "PART_MatchWordButton");
	var useRegularExpressionsButton = buttons.FirstOrDefault(x => x.Name == "PART_UseRegularExpressionsButton");

	matchCaseButton.ToolTip = CreateToolTip("SyntaxEditor_MatchCase"); // these are custom localization resource keys that should be manually defined by the developer that uses this solution
	matchWordButton.ToolTip = CreateToolTip("SyntaxEditor_MatchWord");
	useRegularExpressionsButton.ToolTip = CreateToolTip("SyntaxEditor_UseRegularExpressions");
}

private static ToolTip CreateToolTip(string resourceKey)
{
	var toolTip = new ToolTip();
	toolTip.Content = LocalizationManager.Manager.GetStringOverride(resourceKey);
	return toolTip;
}

Completed
Last Updated: 07 Jul 2023 05:44 by ADMIN
Release R2 2023 SP1
Updating the ThemeSizeHelper by incorporating the margins of GridSplitters and AutoHide areas would significantly improve the flexibility and convenience of better switching between Windows 11 and Windows 11 Compact themes within the RadDocking control.
Completed
Last Updated: 29 May 2023 16:51 by ADMIN
Release R2 2023
Currently, the same glyph is used both when the RadRibbonWindow is maximized and in a normal state.
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Allow setting the group header rows height with a property similar to the RowHeight property of RadGridView. For example, a new GroupHeaderRowHeight property can be introduced. The new property should be included also in the UI virtualization calculations. 
Completed
Last Updated: 27 Mar 2023 09:44 by ADMIN
Release LIB 2023.1.327 (27 Mar 2023)

Cell contents are missing when the header size is assigned through the e.Size property of the HeaderSizeEventArgs in the HeaderSizeNeeded event handler of RadVirtualGrid.

This happens only for some of the cells and when the viewport has many rows and columns.

To work this around, instead of setting the header size in the HeaderSizeNeeded event handler, use the ColumnWidth property of RadVirtualGrid.

<telerik:RadVirtualGrid ColumnWidth="50" />

Completed
Last Updated: 03 Feb 2023 11:46 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
Currently, a ScreenTip is opened 500 milliseconds after you hover the associated item. This is a hardcoded value that cannot be changed. Add a property to change this. For example another attached property in the ScreenTip class.

For example: ScreenTip.InitialShowDelay="1000"
Completed
Last Updated: 06 Nov 2023 05:55 by ADMIN
Release R3 2023 SP1

The System.Drawing.Common package is installed in the project that builds Telerik.Windows.Controls.Navigation.dll for .NET Core 3.1 Core, .NET 5 and .NET 6. The current package version is 4.7.0.

Update the package to the latest available version.

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When exporting Run fonts (<rFonts>) the East Asian Font attribute (<eastAsia>) is not supported.
Completed
Last Updated: 03 Feb 2023 06:43 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
Review and update the selected unfocused state of the controls for the Office2013 theme.
Completed
Last Updated: 24 May 2023 06:54 by ADMIN
Release R2 2023
Created by: John Schroedl
Comments: 0
Category: UI for WPF
Type: Feature Request
5
Introduce a new theme with the Windows 11 look but with smaller sizes.
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
Release R1 2023
We support three validation error templates-> ValidationTooltipTemplate, StaticValidationTooltipTemplate, and StaticValidationOnFocusTooltipTemplate. We should think to create a property where the user can choose which validation error template to use.
1 2 3 4 5 6