I did this using your this answer .......
But I try to implement update functionality like below
transport : {
update: {
url: function (item) {
return "myURL" + item.id;
},
contentType: "application/json; charset=utf-8",
dataType: "json",
type: "put"
}
}
But when I press update button It did not trigger the update function..
Where should I look at ??
Thank you