Unplanned
Last Updated: 03 Dec 2025 10:13 by ADMIN
Svitlana
Created on: 14 Nov 2025 09:51
Category: TreeListView
Type: Bug Report
0
RadTreeListView column filter error message not aligned properly

Steps to reproduce:

1. Click filter icon in column

2. Enter invalid value in filter input

3. Press Filter, the value gets underlined, suggesting some kind of error.

Image

4. Click the place marked 1 and then 2.
This time, it seems a message appears about the cause of the error, but it doesn’t fit inside the control.

Image

3 comments
ADMIN
Martin Ivanov
Posted on: 03 Dec 2025 10:13

Hello Svitlana,

Thank you for the extra images.

Indeed, the described behavior is not very pleasant when it comes the visualization. Based on your feedback I've updated the status of this report.

The issue happens because of the default validation error display mode in the Windows11 theme, which is StaticOnFocus. You can avoid this behavior by using one of the following approaches:

  • Set the ValidationErrorTemplateHelper.DisplayMode property on the TextBox elements in RadTreeListView to ToolTip.
    <telerik:RadTreeListView ItemsSource="{Binding}"
                             AutoGenerateColumns="False">
        <telerik:RadTreeListView.Resources>
            <Style TargetType="TextBox">
                <Setter Property="telerik:ValidationErrorTemplateHelper.DisplayMode" Value="ToolTip" />          
            </Style>
        </telerik:RadTreeListView.Resources> 
    </telerik:RadTreeListView>
  • Or modifying the Validation.ErrorTemplate and implement your own validation visual.
    <telerik:RadTreeListView ItemsSource="{Binding}"
                             AutoGenerateColumns="False">
        <telerik:RadTreeListView.Resources>
            <Style TargetType="TextBox">
                <Setter Property="Validation.ErrorTemplate">
                    <Setter.Value>
                        <ControlTemplate>
                          <!-- custom validation error visual template here -->
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </telerik:RadTreeListView.Resources>
    </telerik:RadTreeListView>

Can you try these and let me know how it goes?

Regards,
Martin Ivanov
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Svitlana
Posted on: 26 Nov 2025 10:36

The images for 3 and 4 steps:

3.

4.

Thanks for the replay, I'll check if it works and let you know.

ADMIN
Martin Ivanov
Posted on: 19 Nov 2025 12:59

Hello Svitlana,

It seems that there are placeholders for pictures for steps 3 and 4, but images are missing. Can you send these again?

Also, I've tested the listed steps, but couldn't recreate the described behavior. Can you check the attached project and let me know if I am missing anything?

If your "Main root" object is not a string (which is the most intuitive guess based on the screenshots), and you mean that there is a validation error and the TextBox in the filtering control which is presented with a red underline, then you can check the following article. More specifically, the DisplayMode setting. You may want to change this to ToolTip.

Regards,
Martin Ivanov
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Attached Files: