Lightbox Recurring Block operations.

Is there currently any way to restrict some of the operations of the recurring block. For example, permit the user to only entering a ‘Weekly’ recurring item.

Additionally, I have developed a test application that takes data from our database and presents the information on the calendar. I want to introduce recurring items to save however we store events as individual rows in the table. Not a single row with a recurrence pattern. Have you got any details on how to convert this pattern?

Thanks

Hello,
I think the only way is to disable or hide restricted controls on the client:scheduler.attachEvent("onLightbox", function(){ var control = scheduler.formSection("recurring").node; ... });
scheduler.formSection(“recurring”).node returns DOM element containing recurring block. You can inspect it and disable or hide necessary items

Have you got any details on how to convert this pattern?
There is a helper that converts recurring events to a single ones
scheduler-net.com/docs/recurring … ing_events

You can also parse rec pattern manually, here is format details
scheduler-net.com/docs/recurring … at_details