Hello,
I have a Diagram Widget with a ShapeTemplate (Html.Kendo().Diagram().Editable.ShapeTemplateName("NodeEditTemplate")
@model Web_Anlageneditor.ViewModels.Diagram.DiagramEditNodeVm@Html.ValidationSummary(true, "", new { @class = "text-danger" })@Html.AntiForgeryToken()<div class="form-group row"> @Html.LabelFor(m => m.Title, new { @class = "col-sm-10 " }) <div class="col-sm-10"> @Html.EditorFor(m => m.Title, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(m => m.Title, "", new { @class = "text-danger" }) </div></div><script> //Kendo Validation $(function() { $("form").kendoValidator(); });</script>
How can I access the window's Title-bar, Width, etc. build around this Template when editing/creating the shape? (s. attachment)
