How to add recurrence editor to another modal

Hi ! 
I need to do this with javascript: https://ej2.syncfusion.com/documentation/schedule/editor-template/#how-to-add-recurrence-options-within-editor-template
There is any way ? I need this recurrence option in a similar modal like yours.
This is my template for modal : 

<script id="EventEditorTemplate" type="text/x-template">
    <table class="custom-event-editor" width="100%" cellpadding="5">
        <tbody>
            <tr>
                <td class="e-textlabel" colspan="1">Title</td>
                <td colspan="2">
                    <input id="Title" class="e-field e-input" type="text" name="Subject" />
                </td>
                <td class="checkbox-cell" colspan="1">
                    <input id="IsAllDay" class="e-all-day e-field e-control" type="checkbox" name="IsAllDay" />
                </td>
                <td class="e-label" colspan="1">All day event</td>
            </tr>
            <tr>
                <td class="e-textlabel">Start</td>
                <td colspan="4">
                    <input id="StartTime" class="e-field e-input" type="text" name="StartTime" />
                </td>
            </tr>
            <tr>
                <td class="e-textlabel">End</td>
                <td colspan="4">
                    <input id="EndTime" class="e-field e-input" type="text" name="EndTime" />
                </td>
            </tr>
            <tr>
                <td class="e-textlabel">Repeat</td>
                <td colspan="4">
                    <input id="Recurrence" name="Recurrence" class="e-field e-input" value="Never" type="text" />
                </td>
            </tr>
            <tr>
                <td class="e-textlabel">Technician</td>
                <td colspan="4">
                    <input id="Technician" class="e-field e-input" type="text" name="TechnicianUserID" />
                </td>
            </tr>
        </tbody>
    </table>
</script>

And I want to see something like this  : 

Thank you ! 


1 Reply

HB Hareesh Balasubramanian Syncfusion Team April 7, 2020 12:16 PM UTC

Hi Juan, 

Greetings from Syncfusion Support. 

We have validated your reported scenario at our end and for the we have prepared a sample using editorTemplate property and the sample can be viewed from the following link, 


And for further reference kindly refer the below UG link, 

Kindly try the above solution and if you have any other concerns please revert for further assistance. 

Regards, 
Hareesh 


Loader.
Up arrow icon