Saturday 17 October 2015

How to Edit or delete button show or hide in 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).remove();



}

});
}


No comments:

Post a Comment