How to hide columns in Kendo Grid when editing in a popup

2.3k views Asked by At

I use Telerik Kendo Grid editing-inline.

I want to hide certain columns when editing popup the number of columns.

1

There are 1 answers

0
Nic On BEST ANSWER

You can use the edit event of the grid to hide some element from the popup window:

$("#grid").kendoGrid({
    edit: function(e) {
        e.container.find(".k-edit-label:first").hide();
        e.container.find(".k-edit-field:first").hide();
    }
});