Я пытаюсь использовать Jquery с элементами управления внутри шаблона Kendo Grid, но jquery не работает и не получает ошибок.JQuery не работает с шаблоном Grid Kendo
$("#grid").kendoGrid({
dataSource: {
type: "json",
transport: {
read: {
url: url,
dataType: "json",
type: "GET",
}
},
pageSize: 50
},
//height: 550,
groupable: true,
filterable: true,
sortable: true,
toolbar: kendo.template($("#template").html()),
pageable: {
refresh: true,
pageSizes: true,
buttonCount: 5
},
columns: [{
field: "ApplicantRefNo",
title: "Reference No.",
//width: 200
}, {
field: "FirstName",
title: "First Name"
}, {
field: "Mobile",
title: "Mobile"
}, {
field: "Address",
title: "Address"
},
{
field: "Marks",
title: "Test Score"
}]
});
}
<script type="text/x-kendo-template" id="template">
<div class="toolbar">
<a id="btnSaveAll">Save All</a>
</div>
</script>
<script>
$(document).ready(function() {
$("#btnSaveAll").click(function() {
alert("ff");
});
});
</script>