Completed
Last Updated: 21 Aug 2023 12:47 by ADMIN
Release R3.2023-Increment.1(19.July.2023)

Is it possible to allow the integration of the Template component in the Template() option of the CustomTemplate() configuration in the Editor's Toolbar? 

For example:

@(Html.Kendo().Editor()
          .Name("editor")
          .Tools(tools => tools
                .Clear()
                .CustomTemplate(x => x.Name("customButton").Template(
                  Html.Kendo().Template()
                      .AddComponent(c => c.Button()
                          .Name("myButton")
                          .Events(ev => ev.Click("onExecute"))
                      )
                  ))
          )
)