Completed
Last Updated: 06 Jun 2025 11:29 by ADMIN
Release 2025 Q3 (Aug)
ADMIN
Vessy
Created on: 30 May 2017 13:25
Category: DropDownTree
Type: Bug Report
5
The clear button does not trigger postback When AutoPostback is set to true and OnEntryRemoved event is not fired

		
6 comments
ADMIN
Attila Antal
Posted on: 06 Jun 2025 11:29

Hi Hugo,

We really apologize for the inconvenience, the entire time we have been focusing on the items with high demand from customers and could not get to this point. Today, however, we were able to take a look and find a fix for it. It will be released it in 2025 Q3 (mid August).

I am sharing a workaround below if you wish to use it until then.

Workaround

Add the following script to ContentPage or MasterPage after the ScriptManager declaration:

<script>
    (function () {
        try {
            var original_clearButtonMouseDown = Telerik.Web.UI.RadDropDownTree.prototype._clearButtonMouseDown;

            Telerik.Web.UI.RadDropDownTree.prototype._clearButtonMouseDown = function (e) {
                original_clearButtonMouseDown.call(this, e);

                // Add your override that will trigger the postback
                var cancelClicking = this._onClearButtonClicking();

                if (this.get_enabled() && !cancelClicking && this._autoPostback) {
                    this._fireServerEvents = true;
                    this.updateClientState();
                    this._postback();
                }
            }
        } catch (e) { }
    })();
</script>

Thank you for your understanding!

Regards,
Attila Antal
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources
Hugo Augusto
Posted on: 30 May 2025 15:55
Here we are in 2025 and still no server side event when clear button is clicked. Great :(
ADMIN
Vessy
Posted on: 12 Oct 2020 14:45

Hi,

Thank you for the feedback, Greg - I have increased the priority of the bug as per your request.

Regards,
Vessy
Progress Telerik

Five days of Blazor, Angular, React, and Xamarin experts live-coding on twitch.tv/CodeItLive, special prizes, and more, for FREE?! Register now for DevReach 2.0(20).

Greg
Posted on: 06 Oct 2020 14:20

I too would like this bug resolved.  It is causing us problems that we have to work around.

 

Thanks!

ADMIN
Vessy
Posted on: 07 Jan 2020 09:53

Hi Jesper,

This bug is still not resolved in favor of items with higher priority. I have increased the priority of this one now, so it will appear upper in our developer-s To-do list. Once the bug is resolved the status of this item will be updated immediately, so you can follow it in order to be notified about any updates.

Regards,
Vessy
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Jesper
Posted on: 02 Jan 2020 11:41
Hi, Is this fixed ?