We have an app that has RadComboBox controls arranged above some RadNumericUpDown controls. For the RadNumericUpDown controls we have it set up to open a numeric pad on PreviewMouseUp to support both mouse and touch. The issue we have is that when a combobox item is selected that lies over a numericupdown using touch, the numericupdown control receives the focus and activates the numeric pad. This does not occur when using a mouse.
Attached is an example derived from our app that reproduces this behavior. Selecting Pounds or Newtons from the Force combobox using touch will cause a message box to appear.
Is there any way to work around this behavior? It is annoying but not a show-stopper.
Thanks,
Jim
Hi,
When using RadGridView ExportAndShow method (GridViewExportFormat = Csv or Txt), the first data row is inserted next to column headers, it's missing a carriage return.
ResultGrid.ExportAndShow(GridViewExportFormat.Csv, "fileName.txt", true);
I'm using Telerik.UI.for.Wpf.80.Xaml 2025.4.1321
We are encountering severe UI thread blocking when using RadOpenFolderDialog during high-volume file operations (concurrent exports).
Technical Findings: After investigating the internal implementation, we identified the root cause in the DialogWindowBase class. Specifically, inside the SetupDialogContent method, the AddWatcher parameter is hardcoded to true.
This forces the underlying DirectoryInfoWrapper to initialize a FileSystemWatcher and unconditionally subscribe to the following events:
Because our application generates a large volume of file events during export, these subscriptions flood the message pump and hang the UI thread.
The Question: Since AddWatcher is hardcoded, is there a supported way (or a workaround via reflection/subclassing) to:
Override SetupDialogContent to pass AddWatcher = false?
Access the DirectoryInfoWrapper instance post-initialization to manually unsubscribe from these events?
We urgently need to stop this component from listening to file system changes to maintain application responsiveness.
Version: 2024.4.1213.462

I have a WPF app with a RadMap and the ability for the user to change the UI language at runtime. This works for the most parts but the MapZoomBar component does not recognize the resetting of the CustomTelerikLocalizationManager class. On application startup it works as expected, but on runtime change it does not.
Is there a method to force a reload? My alternative is to dynamically recreate the MapZoomBar
Hi there,
I recently upgraded from 2024.3.821 to 2025.4.1111 and I found some weird issue when deserializing raddiagram xml. Attached please see two SerializationInfo strings. Both of them can be deserialized in 2024.3.821 but the one named "diagram serialization info_bad" is not able to be deserialized completely in 2025.4.1111. I found the RadDiagramShape with Id = "7cc7b6c3-1606-453d-a9ab-ebc0bd53b207" is causing issue so I removed it from the SerializationInfo Info and named it "diagram serialization info_good".
Please help me to check why the RadDiagramShape Id = "7cc7b6c3-1606-453d-a9ab-ebc0bd53b207" will cause issue in 2025.43.1111 since it didn't give me any error or exception.
my code is simple as:
SerializationInfo e1 = SerializationInfo.CreateDiagramInfo(serializationInfo); RadDiagram.Deserialize(e1);
Thank you
Hi, I'm working on a project that uses Telerik version 2016.1.314.45. Right now we're trying to more widely implement Search As You Type. I see in the documentation that there is some sort of object named SearchStateManager, that you can use in order to modify the search. I cannot find the object in my version. But i can find an answer on a stackoverflow post from 2016/09/07, with an image, that seems to have implemented IsSearchWithAccentEnabled.
When was the feature introduced. I was hoping that in my version could implement similar features as seen on the aforementioned image
Hi,
I have more or less the same issue as in my other question.
I have the column defined like so:
<telerik:GridViewDataColumn
Header="Business Unit"
UniqueName="BusinessUnit"
DataMemberBinding="{Binding BusinessUnit, Converter={StaticResource BusinessUnitToStringConverter}}"
TextAlignment="Center"
Width="60"
CellStyleSelector="{StaticResource BusinessUnitCellStyleSelector}"
IsVisible="False"
IsFilterable="True"
IsReadOnly="True" />
For the top level, everything works as expected.
In the levels below, it seems like the converter isn't run:
The BusinessUnitToStringConverter should grab the description "PI" instead of the actual value of the enum "MuP".
I am on the latest version (2025.4.1111)
Is there a workaround, or will this be fixed in the next version?
Thanks and best regards,
Manuel