Monday 26 October 2015

How to disable edit button from kendo gride

dataBound: function ()



{

$("#RePackagingSummary-grid tbody tr .k-grid-edit").each(function () {

var currentDataItem = $("#RePackagingSummary-grid").data("kendoGrid").dataItem($(this).closest("tr"));

if (currentDataItem.Sid != 1) {

$(this).addClass("k-state-disabled");



}

});
}


No comments:

Post a Comment