Blazor Telerick Scheduler refresh issue

0 Answers 8 Views
Scheduler
Cyrille
Top achievements
Rank 1
Cyrille asked on 11 Jul 2025, 12:39 PM

Hello,

I'm having a problem refreshing a Scheduler component.

I've set up a page where a drop-down list allows you to select a schedule.

Once the schedule is selected, the appointments are loaded and the component is updated.

However, I notice that the appointments are not refreshed and that I need to set the focus on the component.

I've tried several solutions with Rebind and/or Refresh without success.

Does anyone have a template that works?

Thks,

 

 

Ivan Danchev
Telerik team
commented on 14 Jul 2025, 03:53 PM

Hello Cyrille,

I've tested the scenario and at my end the Scheduler is refreshed as expected after changing the data and calling its .Rebind() method. Here's an example: https://blazorrepl.telerik.com/QzYBboFf458w6geH13 

A DropDownList is declared above the Schedule. When the user selects an option, a set of events is loaded in the Scheduler by changing the data the Scheduler is bound to: Data="@Appointments"  This occurs in the DropDownList's OnVariantChanged event handler and after the new data is loaded, the .Rebind() method is called: 

SchedulerRef?.Rebind();

If you are experiencing a different behavior than the one in the linked example, please modify it accordingly so that it demonstrates the issue and link it back for further review. 

No answers yet. Maybe you can help?

Tags
Scheduler
Asked by
Cyrille
Top achievements
Rank 1
Share this question
or