Monday 30 May 2016

how to remove 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).remove();
                    }
                });
}

No comments:

Post a Comment