I have a requirement to design our own custom add/edit template form for scheduler control.
I looked at custom edit form example and found very helpful, However this example does not demonstrate how to use RecurrenceEditor and use them in custom template.
Hello Linda,
I must note that we don't support public usage of this component either. It is part of the inner workings of the scheduler and has to be public because that's the limitation of the framework - all components are public. It is not intended or ready for public use yet, however. You can click the Follow button on this page to get notified when and how such a component is exposed publicly.
As for your other troubles with recurrence, working with recurrence in SQL and the highly specific use case - let's discuss them in your private ticket, they are not related to this component, nor to our tools (that focus on the UI part of your app, not its business logic), nor even to Blazor as a framework - this, I propose we don't spam everyone else following this thread.
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
You can add the Recurrence Editor By Adding this to your code:
<Telerik.Blazor.Components.Scheduler.EditForm.RecurrenceEditor.RecurrenceEditor @bind-Rule="@objReservation.RecurrenceRule" />
However, be warned, if you are using SQL Database, and need this information on reports, you're going to be SOL, because they won't compile the dll in .net Framework, which you need in order to create a UDF for SQL, there is an older version on their blog, that you can use, but it's based on RFC 2445 instead of the new RFC 5545, and when you ask for support, they will just tell you that they don't support it. So, the recurrence rules are essentially useless if reports are needed.