Completed
Last Updated: 03 Dec 2024 14:12 by ADMIN
ADMIN
Dimitar
Created on: 05 May 2016 07:52
Category: ListBox
Type: Bug Report
1
Unable to type in a textbox nested in RadListBoxItem ItemTemplate on iOS and Android if the RadListBox is scrollable

		
1 comment
ADMIN
Rumen
Posted on: 03 Dec 2024 14:12

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>

<telerik:RadListBox runat="server" ID="RadListBox1" OnClientLoad="OnClientLoad"></telerik:RadListBox>