Hi,
I am using the Asp.Net Mvc Wrapper for the scheduler control. I noticed that if I specify an editor template, the delete confirmation message does no longer appear:
To clarify, with this declaration the confirmation message does not appear:
.Editable(e => {
e.TemplateId("editEventTemplate");
e.Confirmation(true);
})
If I remove all the "Editable" configuration or if I leave just the Confirmation part, it works correctly:
.Editable(e => {
e.Confirmation(true);
})
What could be the reason for this strange behaviour?
Thanks,
Stefano Tassara
I am using the Asp.Net Mvc Wrapper for the scheduler control. I noticed that if I specify an editor template, the delete confirmation message does no longer appear:
To clarify, with this declaration the confirmation message does not appear:
.Editable(e => {
e.TemplateId("editEventTemplate");
e.Confirmation(true);
})
If I remove all the "Editable" configuration or if I leave just the Confirmation part, it works correctly:
.Editable(e => {
e.Confirmation(true);
})
What could be the reason for this strange behaviour?
Thanks,
Stefano Tassara