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

Scheduler resource type remote data not working on mobile

1 Answer 45 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Jason
Top achievements
Rank 1
Jason asked on 30 Nov 2015, 10:06 AM
Hello,
I am working on Kendo ASP.Net MVC 2015.1.429, I use a field with datasource is a remote data from URL.
It works well on Desktop environment (image 1). However, when I run this form on mobile, I can’t type any characters into this field (image 2).
@(Html.Kendo().Scheduler< Calendar.Models.CalendarEvents>()
.Name("scheduler")
     
.Resources(resource =>
{
    resource.Add(m => m.Clients).Title("Client").Multiple(true).DataTextField("Text").DataValueField("Value").DataSource(source => source.Read(read => read.Action("GetPatientsList", "Calendar").Data("searchclient")));
})
.Mobile(MobileMode.Auto))

 

Is there any way to fix it to show on mobile correctly?

Many thanks,

1 Answer, 1 is accepted

Sort by
0
Georgi Krustev
Telerik team
answered on 02 Dec 2015, 08:25 AM
Hello Jason,

The described behavior is expected, because the widget uses different editor templates when environment is mobile. We tend to use more native available HTML elements, in this case <select multiple>, as the mobile browsers has a better support for them.

If you would like to override this behavior, then you will need to define a custom editor template:
Regards,
Georgi Krustev
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Scheduler
Asked by
Jason
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
Share this question
or