How to get all Column Details from Datatable

https://snippet.webix.com/rhvmulo0

Hi,
how can i get all column details with associated information in onAfterEditStop event?
For example in the above snippet for “year” column, might have other details associated with like flags like mandatory or editable etc…

https://snippet.webix.com/3lchztvg

Hi @integral thank you for your response.

I was asking for a function to fetch all Datatable columns. Here in the example i am able to get edited column details. Similarly i need to get all column details inside onAfterEditStop event.

https://docs.webix.com/api__ui.datatable_eachcolumn.html

on:{
   onAfterEditStop: function(state, editor){
       this.eachColumn(function(columnid){
         var colConfig = this.getColumnConfig(columnid);
         ...
       })
   }
}

if you need editing row object:

this.getItem(editor.row);