Completed
Last Updated: 03 Nov 2025 14:16 by Lou
Release 2025 Q4 (Nov)
Lou
Created on: 06 Sep 2019 10:48
Category: ListBox
Type: Bug Report
0
Transfer button needs to be clicked twice to make it have effect in RadListBox with Transfer functionality
The problem happens when you select an item and then press the down arrow button to move it. The item does not move. If you then press the down arrow button a second time, it does move.
3 comments
Lou
Posted on: 03 Nov 2025 14:16
Great - thanks for the update !
ADMIN
Rumen
Posted on: 03 Nov 2025 12:55

Hi Lou,

We investigated the problem and managed to fix it. The fix will appear in the upcoming 2025 Q4 release in mid-November.

 

Regards,
Rumen
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
ADMIN
Attila Antal
Posted on: 06 Sep 2019 10:59
Thank you for taking the time reporting this issue! 

It seems there is an issue with the way events are attached to the button. The click does not seem to fire every time tapping on them in all mobile devices.

This issue can be worked around by clicking the button programmatically:

<script type="text/javascript">
    $(document).on('mousedown touchstart', '.rlbButtonAreaBottom .rlbButton', function (e) {
        this.click();
    });
</script>