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?
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