Unplanned
Last Updated: 28 Apr 2026 13:50 by Bill
When the Pdf document contains a big image, for example 3650 x 2220, the image size gets reduced while rendering. This changes the quality of the image and the page is rendered blurry.
Unplanned
Last Updated: 28 Apr 2026 13:02 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Currently, the SdtProperties classes (ex: DateProperties) can be extended by overriding the GetBuilder() method. This allows you to implement custom ISdtBuilder that creates the document content of the SDT form. However, the custom properties are not taken into account during import/export. Consider adding some kind of custom information about the custom SdtProperties type during export and restore it during import. Or at the least provide API (like an event or method override) that can intercept the creation of the SdtProperties during import which will allow you to replace the default SdtProperties object.
Unplanned
Last Updated: 28 Apr 2026 12:02 by Martin Ivanov

RadSpreadsheetFormulaBar has a drop down list that shows the named ranges in the document. If a named range contains an underscore character (ex: Income_Amount), the associated item in the drop down won't display the underscore (ex: IncomeAmount).

To workaround this, you can use a global Loaded event handler of RadMenuItem and override the Header content with a TextBlock.

static MainWindow()
{
    EventManager.RegisterClassHandler(typeof(RadMenuItem), RadMenuItem.LoadedEvent, new RoutedEventHandler(OnMenuItemLoaded));
}

private static void OnMenuItemLoaded(object sender, RoutedEventArgs e)
{
    var menuItem = (RadMenuItem)sender;
    if (menuItem.DataContext is DefinedName context)
    {
        menuItem.Header = new TextBlock() { Text = context.Name };
    }
}

Need More Info
Last Updated: 28 Apr 2026 10:54 by ADMIN

Since the last update, we receive often the following exception from our users log. I don't know exactly how to reproduce, but I know that when it happens, the user tries to click anywhere in the document and each time the exception is thrown. The users need to close and reopen the document to make it work again.

System.NullReferenceException: Object reference not set to an instance of an object. at Telerik.Windows.Documents.UI.DocumentPresenterBase.CaretPosition_PositionChanged(Object sender, EventArgs e) at Telerik.Windows.Documents.DocumentPosition.MoveToPosition(DocumentPosition newPosition) at Telerik.Windows.Documents.Selection.MouseSelectionHandler.UpdateSelectionAndCaretPosition() at Telerik.Windows.Documents.Selection.MouseSelectionHandler.RegisterDocumentMouseMove(Point position, SourceType source) at Telerik.Windows.Documents.UI.DocumentPresenterBase.HandleMouseMoveOnPosition(Point position, SourceType source) at Telerik.Windows.Documents.UI.DocumentPresenterBase.Owner_MouseMove(Object sender, MouseEventArgs e) at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised) at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args) at System.Windows.Input.InputManager.ProcessStagingArea() at System.Windows.Input.MouseDevice.Synchronize() at System.Windows.Input.MouseDevice.PostProcessInput(Object sender, ProcessInputEventArgs e) at System.Windows.Input.InputManager.ProcessStagingArea() at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel) at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)

We also had this case when we try programatically to move the caret (seems to be the same end result exception):

System.NullReferenceException: Object reference not set to an instance of an object.
   at Telerik.Windows.Documents.UI.DocumentPresenterBase.CaretPosition_PositionChanged(Object sender, EventArgs e)
   at Telerik.Windows.Documents.DocumentPosition.MoveToDocumentStart()
   at Telerik.Windows.Documents.DocumentPosition.MoveToFirstPositionInDocument()

Unplanned
Last Updated: 28 Apr 2026 07:10 by Adriana
Created by: Robby
Comments: 3
Category: SyntaxEditor
Type: Feature Request
6

We want to have the option to replace texts only in a selected part of the document. 

Use Notepad++ as a reference to check this feature.

In Development
Last Updated: 24 Apr 2026 13:49 by ADMIN
Steps to reproduce:
- Open RadSpreadsheet
 -Put 1 in B2 and B6
 -Put 0 in B3, B4, B5
 -Add filtering on columns A and B
 -Filter on column B to have only rows with 1. The rows 3 to 5 will be hidden.
 -Paste "1234" as cell selection in the Range A2:A6 
 Note: It is important to enter 1234 in another cell, make a cell selection and then paste it
 -Remove the filter

Expected: "1234" in pasted in cells A2 and A6 only.
Actual: "1234" in pasted in cells A2, A3, A4, A5, A6.
In Development
Last Updated: 23 Apr 2026 11:15 by ADMIN
Steps to reproduce: 

1. Enter in a cell =Today()
2. Show Format Cells dialog and set Custom format "d"

Expected: The value is the day of the month.
Actual: The date is formatted as short date but has to be day of the month.
In Development
Last Updated: 23 Apr 2026 09:28 by ADMIN
Currently, the headers of the menu items in the context menu are hardcoded. Add localization support so they change based on the applied culture.
Unplanned
Last Updated: 22 Apr 2026 10:15 by Martin Ivanov
Currently, the userDataFolder given to the CoreWebView2Environment object used with the WebView2 speech recognizer is hardcoded to a specific folder. 

Add an option to allow the developer to set the userDataFolder manually in the default WebView2SpeechRecognizer. Or at the least to respect the WEBVIEW2_USER_DATA_FOLDER environment variable which is used when the userDataFolder parameter is not used.
In Development
Last Updated: 21 Apr 2026 11:49 by ADMIN
RadGridView provides two methods to bring an item into the view. We could extend these or create a new one to bring an item to a specific position.
In Development
Last Updated: 21 Apr 2026 11:49 by ADMIN
Performance is degraded when a large number of columns are added dynamically by binding the Columns collection via an attached behavior.
Completed
Last Updated: 21 Apr 2026 10:40 by ADMIN
Release Telerik UI for WPF 2026.1.415
Selecting a column with two or more merged cells, selects not only the selected column but the rest of columns that the merged cells are from. The behavior when working with rows is analogical.
Unplanned
Last Updated: 21 Apr 2026 08:17 by ADMIN
Unplanned
Last Updated: 21 Apr 2026 08:07 by ADMIN
The feature needs to cover functionality as follows: The logarithmic axis has an exponent step (1, 10, 100, 1000) and the current ticks support of the axis only plots evenly distributed ticks. Clients, however, sometimes need to display unevenly distributed ticks (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, and so on).
In Development
Last Updated: 20 Apr 2026 13:23 by ADMIN
When setting the following strings as cell value, they are recognized as dates. In industry standard applications like MS Excel and OpenOffice, they are recognized as strings:
- "12 3456" in bg-BG, fr-FR, ru-RU, sv-FI, en-US
- "12.3456" in de-DE
- "1 23" in en-US
- "2013/5" in en-US
- "3000-03" in en-US
In Development
Last Updated: 18 Apr 2026 18:24 by ADMIN
The document will be imported with a loss of content. The reason is that ASCII85Decoder will throw an ArgumentException when the stream doesn't end with '~>'. 

Although this is invalid case according to PDF specification, other applications are handling it and the document is successfully visualized in them. We may also consider implementing workaround that handles such invalid streams.
Unplanned
Last Updated: 17 Apr 2026 10:57 by Stenly
 A XamlParseException is raised when opening the dialog to edit the recurrence of an appointment with the NoXaml assemblies.
In Development
Last Updated: 16 Apr 2026 19:58 by ADMIN
#.##0,00;-#.##0,00;;@ does not work in RadSpreadsheet. It should suppress visualizing of ) values.

Workaround: #.##0,00;-#.##0,00; ;@ works fine (there is ' ' [space] set for the zero values).
Completed
Last Updated: 15 Apr 2026 07:43 by ADMIN
Release Telerik UI for WPF 2026.1.415
Currently, if you have a cell that merges into multiple columns, when you click on the column header, this will select also the adjacent columns where the merged cell extends. Add an option to disable this functionality and select only the cells in the clicked column.
1 2 3 4 5 6