I would like to use Kendo Editors in a Kendo Grid. My goal is to edit directly a concern and press a small button at the editor widget to save the changes. Attached a picture how it should looks like at the end.
Here are the single elements: http://jsfiddle.net/nKRzh/19/
I tried already to add the editors in the grid with that:
But the result is only normal text fields with no button.
Thanks in advance!
I am using ASP.Net MVC 5 and
Kendo UI version: 2014.2.903
OS: Window 7 64-bit
browser version: Chrome 37.0.2062.124 m (64-bit)
Here are the single elements: http://jsfiddle.net/nKRzh/19/
I tried already to add the editors in the grid with that:
<script id="detail-template" type="text/x-kendo-template"> @(Html.kendo().editor() .name("editor") .value("<p>initial value</p>")
.ToClientTemplate()
)</script>$("#ConcernList").kendoGrid({ dataSource: dataSource, columns:[ { field:"Text", title:"Concerns" template: kendo.template($("#detail-template").html()), }, ], });But the result is only normal text fields with no button.
Thanks in advance!
I am using ASP.Net MVC 5 and
Kendo UI version: 2014.2.903
OS: Window 7 64-bit
browser version: Chrome 37.0.2062.124 m (64-bit)