Unplanned
Last Updated: 02 Jan 2020 16:31 by ADMIN
Lou
Created on: 30 Aug 2019 15:09
Category: TabStrip
Type: Bug Report
0
RadTabStrip scolling does not stop
The tabs will scroll by themselves even when your finger is off the screen.
1 comment
ADMIN
Attila Antal
Posted on: 06 Sep 2019 11:14

Thank you for taking your time reporting this issue!

Seems that the current event handlers attached to the scroll buttons do not detect the mouseup/touchend events.

Possible workaround would be to attach an event handler to the document directly.

<script type="text/javascript">
    $(document).on('mouseup touchend', function (e) {
        var tabStrip = $telerik.findControl(document, 'RadTabStrip1');
		if(typeof tabStrip !== 'undefined'){
			tabStrip._scroller._stopScroll();
		}
    });
</script>