I would like to have the authority to send my information via $.ajax() when (at the time) I click the update button,But I can not handel the update button click event.
I want the code to handle the update button click event but I did not work
code:
$(".table").on("click", "k-grid-update", (function () {
alert('xxx');
//$.ajax({
// url: 'api/apdevice',
// type: 'PUT',
// datatype: 'application/json',
// data: {},
// success: function (data) {
// },
// error: function (data) {
// }
//});
thank you