Completed
Last Updated: 03 Dec 2024 14:19 by ADMIN
ADMIN
Veselin Tsvetanov
Created on: 17 Aug 2016 13:11
Category: ComboBox
Type: Bug Report
0
RadComboBox: An <input> element within an ItemTemplate cannot be focused by tapping on it on mobile devices, when a scroll for the drop-down is present

		
1 comment
ADMIN
Rumen
Posted on: 03 Dec 2024 14:19
A similar issue is discussed in this KB article: Resolving Touch Responsiveness of TextBoxes in RadPanelBar on iPad

To resolve this, you can disable the touch scroll extender when the page loads, which should allow the text boxes to respond to touch events as expected. Please try the following JavaScript snippet in your page:

<script>
    function OnClientLoad(sender, args) {
        if (Telerik.Web.Browser.safari && Telerik.Web.Platform.ios && sender._touchScrollExtender) {
            sender._touchScrollExtender.disable();
        }
    }
</script>