Making a row uneditable on the go.

Hi, I am calling a JS function which adds and stores the data in a row, i want to make that respective(resultant row) uneditable. Is their a way make a complete row uneditable when i call JS function.

You can use onBeforeEditStart start event and some marker on the row

dtable.attachEvent("onBeforeEditStart", function(id){
          if (this.getItem(id.row).noteditable) return false;
})
dtable.add({ noteditable:true });

http://webix.com/snippet/5a4aad33