or
angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.mainGridOptions = { dataSource: { type: "odata", transport: { update: function(options){ console.log("updated"); } } }, editable: "inline", columns: [{ field: "FirstName", title: "First Name", width: "120px" },{ field: "LastName", title: "Last Name", width: "120px" },{ field: "Country", width: "120px" },{ field: "City", width: "120px" },{ command: ["edit", "destroy"], title: " ", width: "250px" }] }; })