Hello kendo practitioners! Always a lot of help.
I am making a Kendo Grid in which only some columns can be edited.
It should work as shown in the picture below.
So I tried writing various editable methods like the code below, but it didn't work.
columns: [
{
selectable: true,
width: "40px"
},{
field: "docno",
title: "Doc. No",
},{
field: "doctitle",
title: "Doc. Title",
},{
field: "rev",
title: "Rev",
editable: false
},{
field: "status",
title: "Status",
attributes: {editable: false}
},{
field: "genericDocIndex",
title: "Generic Doc Index",
attributes: {disabled: true}
}
]