All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
What's the syntax for this as this doesn't seem to work?
<editable enabled="true" mode="popup" template="/Features/Shared/EditorTemplates/FileUploadForm.cshtml" />
Hello Tim,
To enable Custom Pop-up editing using Tag Helpers you could specify a template-id and invoke it in the scripts:
<editable mode="popup" template-id="popup-editor" /> .... <script id="popup-editor" type="text/x-kendo-template"> @Html.Partial("PopupEditor") </script>
In this scenario, the PopupEditor must be located in /Views/Home folder.
For your convenience, I am attaching a small project demonstrating the above.
Let me know if you have any questions.
Regards, Nikolay Progress Telerik