Unplanned
Last Updated: 23 Dec 2019 09:20 by ADMIN
Lou
Created on: 06 Sep 2019 10:48
Category: LightBox
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.
1 comment
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>