Unplanned
Last Updated: 04 Jul 2025 06:38 by ADMIN

Expose a way to disable the Spell Checking Complete dialog:

Unplanned
Last Updated: 27 Jun 2025 10:56 by ADMIN
Respect selected cells while pasting multiple values in a table.
Unplanned
Last Updated: 27 Jun 2025 09:03 by ADMIN
Created by: Austin
Comments: 1
Category: TreeView
Type: Feature Request
1
Implement UI Automation support
Unplanned
Last Updated: 16 Jun 2025 11:01 by ADMIN
Created by: Ken
Comments: 1
Category: Spreadsheet
Type: Feature Request
0

Implement Text to Columns functionality similar to the one in Excel:

Unplanned
Last Updated: 10 Jun 2025 12:08 by ADMIN
Created by: Nadya
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Provide an AI assistant for code generation with the Telerik UI for WinForms controls. 

Such as Telerik Blazor AI Coding Assistant

Unplanned
Last Updated: 09 Jun 2025 06:15 by ADMIN
Created by: Nadya
Comments: 0
Category: UI for WinForms
Type: Feature Request
2
 Currently, the EnableUIAutomation property can be set per control. It would be useful if there is an opportunity to enable/disable it globally. 
Unplanned
Last Updated: 21 May 2025 10:51 by ADMIN
Created by: Ketan
Comments: 1
Category: Map
Type: Feature Request
1
Create build-in Google Map provider.
Completed
Last Updated: 12 Jun 2025 07:58 by ADMIN
Release 2025.2.612 (Preview)

Add a call to "OnImageLoaded" to "RadPictureBoxelement.PasteImage()" method or create an event like "ImagePasted" ot be able to tract an image change at this point.

For me I solved this via an Harmony patch that adds a call to OnImageLoaded() on PasteImage()  long time ago. Not really elegant, but I'm a noob in patching with Harmony.

Just want to leave it here for anyone that want ot use this solution too or for Telerik to implement a native way to expose an image change via PasteImage.

[HarmonyPatch(typeof(RadPictureBoxElement))]
[HarmonyPatch("PasteImage")]
public class RadPictureBoxElement_PasteImageFixes
{
    private static readonly Dictionary<RadPictureBoxElement, Image> images = [];

    public static void Prefix(object __instance)
    {
        if (__instance is RadPictureBoxElement pb)
        {
            // Remember our image
            images.Remove(pb);
            images.Add(pb, pb.Image);
        }
    }

    public static void Postfix(object __instance)
    {
        if (__instance is RadPictureBoxElement pb && images.TryGetValue(pb, out var image) && pb.Image != image)
        {
            // Remove first to avoid conflicts on error
            images.Remove(pb);

            // Call "OnImageLoaded"
            var method = typeof(RadPictureBoxElement).GetMethod("OnImageLoaded", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
            method.Invoke(pb, null);
        }
    }
}

Unplanned
Last Updated: 28 Apr 2025 11:48 by ADMIN
Created by: Brandon
Comments: 1
Category: CommandBar
Type: Feature Request
6
Implement UIAutomation.
Unplanned
Last Updated: 23 Apr 2025 12:15 by ADMIN
Created by: Matthias
Comments: 1
Category: UI Framework
Type: Feature Request
6
 
Unplanned
Last Updated: 02 Apr 2025 11:24 by ADMIN
Created by: Nadya
Comments: 0
Category: StepProgressBar
Type: Feature Request
0
The StepClicked event should trigger when a RadStepProgressBarItem is clicked.
Unplanned
Last Updated: 28 Mar 2025 08:49 by ADMIN
Created by: Nadya
Comments: 0
Category: Menu
Type: Feature Request
1
 
Unplanned
Last Updated: 27 Mar 2025 14:05 by ADMIN
Created by: CHEE HANG LIM
Comments: 1
Category: Buttons
Type: Feature Request
0

We can create a FloatingActionButton similar to the one in Telerik UI for ASP.NET Core.

Declined
Last Updated: 03 Apr 2025 09:09 by ADMIN
Created by: Martin
Comments: 2
Category: UI for WinForms
Type: Feature Request
0

RadMessageBox(form) is a telerik replacement for the System.Windows.Forms.MessageBox.

MessageBox has a parameter MessageBoxOptions.DefaultDesktopOnly which makes it (surprisingly) topmost. RadMessageBox does not have this option.

I have a scenario where the RadMessageBox is hidden by a total different application when shown. So I need to make it topmost.

Can you add some kind op RadMessageBoxOptions to make it topmost?

Unplanned
Last Updated: 04 Mar 2025 10:48 by ADMIN
Created by: Nadya
Comments: 0
Category: SyntaxEditor
Type: Feature Request
1
Currently, printing support is not available in the control.
Unplanned
Last Updated: 10 Feb 2025 15:50 by ADMIN
Created by: Riziq
Comments: 1
Category: SyntaxEditor
Type: Feature Request
0
 
Unplanned
Last Updated: 30 Jan 2025 11:47 by ADMIN
Created by: Darren
Comments: 1
Category: Buttons
Type: Feature Request
1
Add support to handle mutual-exclusivity similar to RadRadioButtons.
Unplanned
Last Updated: 30 Jan 2025 10:31 by ADMIN
Created by: Alok Tibrewal
Comments: 1
Category: PictureBox
Type: Feature Request
0
 
Unplanned
Last Updated: 10 Jan 2025 13:08 by James

Currently, RadPdfViewer offers the DataError event which is purposed to handle errors during the import process. However, if there are problematic pages that are rendered in the viewer at a later moment after the document is already imported, the viewer doesn't offer a suitable way for handling such problematic moments even though the PdfProcessing library throws one of its exceptions

The exact client's case is loading a PDF document which contains images requiring JPX Decoder which is currently not supported. Even though the PdfProcessing library throws internally the following error, the RadPdfViewer control doesn't throw the DataError event with the respective error:

Telerik.Windows.Documents.Fixed.Exceptions.NotSupportedFilterException: 'JPXDecode is not supported.'

 

Unplanned
Last Updated: 08 Jan 2025 19:14 by Dimitre
Created by: Dimitre
Comments: 0
Category: DateTimePicker
Type: Feature Request
1

Hi Team,

I would like to request to add a Today button to the RadDateTimePicker so when the user clicks on it, the value of the RadDateTimePicker will be set to the current day/time.

Thank you!

1 2 3 4 5 6