We are a Japan-based company developing and selling software that incorporates Telerik UI components.
For export compliance purposes, we have been asked to confirm the Export Control Classification Number (ECCN) of the components used in our software.
Could you please confirm whether the ECCN for Telerik UI for WPF is classified as EAR99?
If it is not EAR99, we would appreciate it if you could provide the correct ECCN classification.
If available, please provide an official or documented classification.
Additionally, we also use Telerik UI for WinForms in some of our products.
Could you please provide the ECCN classification for this product as well?
Thank you in advance for your support.

Hello,
When RectSelectionMode is set to "full," a diagram shape is only selected if the entire shape is within the selection area.
However, for connections, even if only a part of the connection is within the selection area, it gets selected in this mode.
I would like connections to be selected only when their entire length is included in the selection area, just like diagram shapes.
Is it possible to modify RectSelectionMode to achieve this?
If there is any method to enable this behavior, please let me know.
I'm using the RadMultiColumnComboBox control with the GridViewItemsSourceProvider. It's showing a validation error that something "cannot be empty" and I can't get it to go away. Because this control is just used to select a record, I don't want any kind of validation in the grid of any kind. I've tried setting these properties on the bindings for each column:
ValidatesOnDataErrors = false,
ValidatesOnNotifyDataErrors = false,
ValidatesOnExceptions = false,
NotifyOnValidationError = false,
I've also tried setting the grid view's validation mode to none. I've tried setting these properties on the columns:
IsReadOnly = true,
ValidatesOnDataErrors = Telerik.Windows.Controls.GridViewValidationMode.None
Nothing works.

I need a dialog box in WPF where I can select a folder or location in system. I used RadOpenFolderDialog but I also need Opened event handler similar to DialogParameters telerik control.
Need Opened event handler which points to method that will be called when the Opened event of the Window is fired. Please suggest solution for it.
Also if there is any other dialog box telerik control which is suitable for my requirement, suggest me.

I am using TelerikPager with latest version of required nuget package. Setting all required properties like PageSize, Total, ButtonCount, Page, PageChanged.
On WPF UI, It is showing all pages along with next & previous button but it not showing total page count like "1 - 8 of 24". Need suggestion or help to resolve this issue.
<TelerikPager PageSize=""
Total=""
ButtonCount=""
Page=""
PageChanged=""
ShowInfo="true"></TelerikPager>
Hello,
I'm using Telerik for WPF, version 2020.1.218, and I am using RadGridView with filters. One of the colums is a Date type, and when I am changing the culture in order to translate the application, the filter is correctly translated. However, if I click on the calendar icon to select the date, that component is not being translated. Is this a bug?
Kind regards,
Román.

Below is a simplified version of the style currently used:
<Grid.Resources>
<​Style TargetType="telerik:TreeListViewRow">
<!-- Default row color based on data -->
<Setter Property="Background">
<Setter.Value>
<Binding Path="FileSource">
<Binding.Converter>
<converter:SourceTypeToColorConverter/>
</Binding.Converter>
</Binding>
</Setter.Value>
</Setter>
<Setter Property="MouseOverBackground" Value="LightBlue"/>
<​Style.Triggers>
<!-- Default selected row color -->
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="LightBlue"/>
</Trigger>
<!-- Selected color for local files -->
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Property="IsSelected" Value="True"/>
<Condition Binding="{Binding FileSource}" Value="LocalFile"/>
</MultiDataTrigger.Conditions>
<Setter Property="Background" Value="LightGreen"/>
</MultiDataTrigger>
<!-- Selected color for remote files -->
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Property="IsSelected" Value="True"/>
<Condition Binding="{Binding FileSource}" Value="RemoteFile"/>
</MultiDataTrigger.Conditions>
<Setter Property="Background" Value="LightYellow"/>
</MultiDataTrigger>
<​/Style.Triggers>
<​/Style>
</Grid.Resources>Hello Telerik Team,
I am currently working with TreeListView in a WPF application and I am facing an issue related to row background color overriding when a row is selected.
In my application, certain rows need to have a custom background color depending on their type (for example: LocalFile and RemoteFile). The custom color works correctly when the row is not selected.
However, when the row is selected, the default RadTreeListView selection background color overrides the custom color, and the File-specific color is no longer visible.
My goal is to preserve the custom background color when the row is selected.
Below is a simplified version of the style currently used:
<Grid.Resources>
<​Style TargetType="telerik:TreeListViewRow">
<!-- Default row color based on data -->
<Setter Property="Background">
<Setter.Value>
<Binding Path="FileSource">
<Binding.Converter>
<converter:SourceTypeToColorConverter/>
</Binding.Converter>
</Binding>
</Setter.Value>
</Setter>
<Setter Property="MouseOverBackground" Value="LightBlue"/>
<​Style.Triggers>
<!-- Default selected row color -->
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="LightBlue"/>
</Trigger>
<!-- Selected color for local files -->
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Property="IsSelected" Value="True"/>
<Condition Binding="{Binding FileSource}" Value="LocalFile"/>
</MultiDataTrigger.Conditions>
<Setter Property="Background" Value="LightGreen"/>
</MultiDataTrigger>
<!-- Selected color for remote files -->
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Property="IsSelected" Value="True"/>
<Condition Binding="{Binding FileSource}" Value="RemoteFile"/>
</MultiDataTrigger.Conditions>
<Setter Property="Background" Value="LightYellow"/>
</MultiDataTrigger>
<​/Style.Triggers>
<​/Style>
</Grid.Resources>The issue occurs when the row becomes selected. The control applies the default selection background, which overrides these custom styles.
Could you please advise on the recommended way to maintain custom row background colors for specific items even when they are selected in TreeListView?
Any guidance or best practice would be greatly appreciated.
Thank you.
In a RadLayoutControl I use LayoutControlTabGroup.
I can set the background of the Item's but not on the "empty" space, is there some way to do that.
<telerik:RadLayoutControl >
<telerik:LayoutControlTabGroup Background="White">
<telerik:LayoutControlTabGroupItem Header="Tab 1" Background="Red">
<Button Content="Item 1" />
</telerik:LayoutControlTabGroupItem>
<telerik:LayoutControlTabGroupItem Header="Tab 2" Background="Blue">
<Button Content="Item 2" />
</telerik:LayoutControlTabGroupItem>
</telerik:LayoutControlTabGroup>
</telerik:RadLayoutControl>