Problems with Schedule in Google Chrome

1 Answer 125 Views
Scheduler
Igor
Top achievements
Rank 1
Igor asked on 15 Jun 2021, 02:23 PM

Schedule works correctly in Opera and Edge browsers, but behaves inappropriately in Google Chrome.

Follow images of behavior.


var tipo = ViewData["Tipo"];
		@(Html.Kendo().Scheduler<AgendamentoWeb.Models.Scheduler.MeetingViewModel>()
		.Name("scheduler")
		.MajorTimeHeaderTemplate("<span>#=kendo.toString()#</span>")
		.DateHeaderTemplate("<span>#=kendo.toString(date, 'dd - MMM')#</span>")
		.MajorTick(1440)
		.Height(600)
		.Selectable(true) //ADD 15/05/2019
		.EventTemplateId("event-template")
		.Editable(false)
		.Views(views =>
		{
			views.TimelineView(t => 
			{
				t.Title("Dia");
				t.ColumnWidth(50);
				t.EventHeight(10);
			});
			views.TimelineWeekView(t =>
			{
				t.Title("Semana");
				t.ColumnWidth(50);
				t.EventHeight(10);

			});
			views.TimelineMonthView(timeline =>
			{
				timeline.ColumnWidth(70);
				timeline.Title("Mês");
				timeline.EventHeight(10);
				timeline.Selected(true); //ADD 15/05/2019
			});
			views.CustomView("kendo.ui.SchedulerTimelineYearView", mv =>
			{
				mv.Title("Ano");
				//mv.Selected(true); //ADD 15/05/2019
			});
		})
		.Timezone("Etc/UTC")
		.Group(group => group.Resources("Attendees").Orientation(SchedulerGroupOrientation.Vertical))
		.Resources(resource =>
		{
			resource.Add(m => m.Attendees)
				.Title("Attendees")
				.Name("Attendees")
				.DataTextField("Nome")
				.DataValueField("PessoaID")
				.DataColorField("CorAtividadeAtiva")
				.Multiple(true)
				.DataSource(s => s.Read(read => { read.Action("ListaPessoasAgendamento", "Scheduler", new { Tipo = tipo }); }));
		})
		.DataSource(d => d.Model(m =>
		{
			m.Field(f => f.RoomID);
			m.RecurrenceId(f => f.RecurrenceID);
		})
		.Read("Timeline_Read", "Scheduler")
		))

 

 

1 Answer, 1 is accepted

Sort by
0
Anton Mironov
Telerik team
answered on 18 Jun 2021, 01:06 PM

Hi Igor,

Thank you for the images, code snippet, and details provided.

I tried to replicate the pointed issue locally. At my side every browser opens the following in the same way:

The fastest route to getting you up and running is if you could provide a runnable, isolated, sample project. Examining this project will let us replicate the issue locally and further troubleshoot it.

Looking forward to hearing back from you.

Kind Regards,
Anton Mironov
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Scheduler
Asked by
Igor
Top achievements
Rank 1
Answers by
Anton Mironov
Telerik team
Share this question
or