Is it possible have this code equivalent code in kendo external template
问题 I have this dojo with its inline template var actionName = 'read'; $("#grid").kendoGrid({ columns: [ { field: "name" }, { field: "age" } ], dataSource: [ { name: "Jane Doe", age: 30, read: true, actionName: actionName } ], detailTemplate: "<div> #:" + actionName +"# </div>" }); and this dojo with its external template: <script id="detailTemplate" type="text/x-kendo-template"> #: actionName # </script> var actionName = 'read'; $("#grid").kendoGrid({ columns: [ { field: "name" }, { field: "age"