Unplanned
Last Updated: 01 May 2026 07:43 by Martin Ivanov
Add keyboard navigation in the DropDownList and ComboBox SDT elements (content controls) of RadRichTextBox. 
Alt(or another modifier)+Down for drop down opening and Up and Down arrows for navigation in the items.
Unplanned
Last Updated: 30 Apr 2026 20:01 by Martin Ivanov

When a DropDownList SDT form is saved in a XAML document and then imported with the XamlFormatProvider, an extra ListItem entry is added in the items collection of the DropDownList. The extra entry is the default "Choose an item".

To work this around, iterate all ComboBoxProperties and manually remove duplicates of the "Choose an item" entry.

var dropDownLists = radRichTextBox.Document.EnumerateChildrenOfType<SdtRangeStart>()
     .Where(x => x.SdtProperties is ComboBoxProperties)
     .Select(x => x.SdtProperties).OfType<ComboBoxProperties>();
 var defaultItemString = LocalizationManager.GetString("Documents_ContentControlsGenerator_ListItem");
 foreach (var item in dropDownLists)
 {
     if (item.Items.Count > 0 && item.Items.Any(x => x.Value != defaultItemString) && item.Items.Any(x => x.Value == defaultItemString))
     {
         var occurrence = item.Items.FirstOrDefault(x => x.Value == defaultItemString);
         while (occurrence != null)
         {
             item.Items.Remove(occurrence);
             occurrence = item.Items.FirstOrDefault(x => x.Value == defaultItemString);
         }
     }
 }

Unplanned
Last Updated: 29 Apr 2026 19:01 by ADMIN
Created by: Robby
Comments: 4
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.

Unplanned
Last Updated: 29 Apr 2026 15:24 by Martin Ivanov
Font settings are not applied for newly typed text when using the font properties dialog to change the font.
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 };
    }
}

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.
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).
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.
Unplanned
Last Updated: 10 Apr 2026 07:57 by ADMIN
The GridViewCheckBox cell calls the license verify method in its constructor. This potentially could lead to performance degradation when the RadGridView is populated with a large number of cells. Each scrolling operation will trigger the GridViewCheckBox creation thus licensing validation.
Unplanned
Last Updated: 06 Apr 2026 12:09 by Martin Ivanov
The text content control (SDT form) cannot be edited when the Lock property of the associated SdtProperties is set to SdtLocked. The SdtLocked setting should prevent deletion of the form only, but the user should be able to still edit the text. 
The issue reproduces only if the content control was locked before any text is entered (when the text placeholder is displayed). 

 
Unplanned
Last Updated: 03 Apr 2026 15:54 by Martin Ivanov

Add protection mode that allows to make the document readonly, but allow forms editing. In MS Word this can be enabled via the "Restrict Editing" menu. The option is called "Filling in forms" and protects the document, but leaves the Sdt elements (the forms) editable.

Unplanned
Last Updated: 02 Apr 2026 11:12 by Martin Ivanov
It seems that the System.Net.Http package dependency was added because it was required by SharpDX which was used by RadWebCam in older versions of Telerik. After the migration to SkiaSharp the package dependency was no longer needed, but it seems it wasn't removed.

Remove the System.Net.Http package dependency.
Unplanned
Last Updated: 25 Mar 2026 10:00 by Martin Ivanov
Currently, when you insert a content control using TextProperties, CheckBoxProperties, etc., the applied font is the default one for the content controls. Instead, it should use the font of the associated span/paragraph where it was inserted. For example, if you type "Hello world" and set its font size to 36, then place the cursor between "Hello" and "world" and insert a textbox content control there, the font size of the textbox will be something like 10, instead of 36.

Synchronize the font properties and make sure that the content control uses same font as the existing paragraph/span.
Unplanned
Last Updated: 20 Mar 2026 14:20 by Martin Ivanov
Make the UpdateViewPort of the SelectionUILayer class virtual so it can be overridden, thus allowing customization of the selection rectangle drawn in the UI.
Unplanned
Last Updated: 20 Mar 2026 10:21 by ADMIN
Binding erros appears when clicking on the Operator/Constants option in the left tree:

System.Windows.Data Error: 40 : BindingExpression path error: 'Children' property not found on 'object' ''ConstantEditorItemModel' (HashCode=24850331)'. BindingExpression:Path=Children; DataItem='ConstantEditorItemModel' (HashCode=24850331); target element is 'RadTreeViewItem' (Name=''); target property is 'ItemsSource' (type 'IEnumerable')

System.Windows.Data Error: 40 : BindingExpression path error: 'Children' property not found on 'object' ''OperatorEditorItemModel' (HashCode=64577580)'. BindingExpression:Path=Children; DataItem='OperatorEditorItemModel' (HashCode=64577580); target element is 'RadTreeViewItem' (Name=''); target property is 'ItemsSource' (type 'IEnumerable')
Unplanned
Last Updated: 17 Mar 2026 13:18 by Stenly
The Polygon elements that represent the background and border of a content control can have their size changed when adding a new line or a paragraph. 
1 2 3 4 5 6