Adding recurring events form in full custom lightbox

is it possible? I’m referring to this example docs.dhtmlx.com/scheduler/sample … _form.html

How can i add the default recurring event form to my full custom lightbox?

current code:

<div id="scheduler_modal">
<form role="form" class="form-horizontal">
	<label for="event_title">Event Title </label>
	<input type="text" name="event_title" value="" id="event_title">
	
	<label for="start_date">Start Date </label><input type="text" name="start_date" value="" id="start_date">
	
	<label for="end_date">End Date </label><input type="text" name="end_date" value="" id="end_date">
	<br><br>	
	<input type="button" name="save" value="Save" id="save"  class="btn btn-primary" ng-click="save_schedule()">
	<input type="button" name="close" value="Close" id="close"  class="btn" ng-click="close_lightbox()">
	<input type="button" name="delete" value="Delete" id="delete"  class="btn btn-danger" ng-click="delete_event()">
</form>
</div>
scheduler.showLightbox = function(id) {
    var ev = scheduler.getEvent(id);
    scheduler.startLightbox(id, html("scheduler_modal"));

    html("event_title").focus();
    html("event_title").value = ev.text;
    html("start_date").value = ev.start_date || "";
   html("end_date").value = ev.end_date || "";
 };

thanks.

You can’t reuse sections of standard lightbox in the custom one.
If you want to use the custom lightbox and recurring events you will need to create a custom UI for recurring mode selection.

Ok, what properties should i use to save the recurring event from ordinary form i created?

Hi,
here you can find the description of all properties and the general logic of the recurring events:
docs.dhtmlx.com/scheduler/recurring_events.html