I have a grid I am using with Angular 1, and I would to have a non-editable column. The documentation and several examples(non-angular) seem to say setting the editable property to either a function that returns false or setting it to false directly should accomplish this, but for some it does not. The configuration I am using is pretty basic, and I can't seem figure out what I am doing wrong. I have put stops on the anonymous function, and it never gets called when that cell goes into editing mode.
self.gridConfiguration = {
dataSource: datasource ,
toolbar: ["create","save"],
selectable:true,
sortable:true,
editable:true,
navigatable: true,
columns: [
{field: "projectName", title: "Title", editable: function(dataItem){return false;}}
]};