This is a migrated thread and some comments may be shown as answers.

RadComboBox on iPad issue

5 Answers 165 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 29 Nov 2018, 03:10 PM

Hello, there is a problem with using RadComboBox on iPad, when the page has scrolling, client can't scroll the combobox and select some value, it's just scrolling a page instead. I could not find the working solution on the forum, so I decided to create new thread, please advice.

 

Test page and login credentials below:

http://umanage.serran.net/_Test/Illya/Default.aspx

iPadTest/iPadTest

5 Answers, 1 is accepted

Sort by
0
Accepted
Vessy
Telerik team
answered on 03 Dec 2018, 01:02 PM
Hi Steve,

We are aware of this issue - the root  of it and the possible workarounds are explained in details here:
https://www.telerik.com/support/kb/aspnet-ajax/details/cannot-scroll-telerik-control-in-ios-11.3---the-page-scrolls-instead

You can add the following script in order to fix it for RadComboBox:
function fixGridSchedulerComboBoxDropDownList() {
    // For RadComboBox - .rcbScroll
    var fixed = $telerik.$(".rcbScroll");
    fixed.on('touchmove', function (e) {
        e.preventDefault();
    });
}
Sys.Application.add_load(fixGridSchedulerComboBoxDropDownList);


Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Steve
Top achievements
Rank 1
answered on 04 Dec 2018, 03:02 PM
Thank you, Vessy.
0
Vessy
Telerik team
answered on 04 Dec 2018, 04:23 PM
Hi,

You are welcome, Steve :)

Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Doyle
Top achievements
Rank 1
answered on 27 Sep 2019, 06:35 PM
Has this been resolved in a new release? We abhor using script because it is a maintenance nightmare for our SaaS product. 
0
Vessy
Telerik team
answered on 02 Oct 2019, 02:21 PM

Hi Doyle,

I am afraid that the provided workaround is not added internally in our source code and the only way to have the fix for the moment is to add it to the problematic pages.

Regards,
Vessy
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
ComboBox
Asked by
Steve
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Steve
Top achievements
Rank 1
Doyle
Top achievements
Rank 1
Share this question
or