edit datatable not working

Hi team,

I try to set ON the datatable editing but I don’t know why it doesn’t work.
check my jsfiddle : Webix Tree Widget Test - JSFiddle - Code Playground
any solutions ?

Thank you for your answers.

Hi,

editable:true enables the possibility to edit, however, editor has to be specified for each needed column: Webix Tree Widget Test - JSFiddle - Code Playground

    editable: true,
    editaction: 'dblclick',
    columns:[
        { id:"rank",    header: translate["en"].rank,		width:50},
        { id:"title",   header: translate["en"].title,	width:200,	editor:"text"},
    }

Please check also the related article: http://docs.webix.com/datatable__editing.html

Hi,

According to this webix page autoConfig:true adds automatically editor:"text" to each column. This
seems not to be working though. DataTable Editing of DataTable, Operations with Data Webix Docs

@534h144k
did you use autoConfig:true in conjunction with editable:true?
https://snippet.webix.com/ch67nk1z

@intregal I did

@534h144k
in the above snippet everything is working.
can you provide not working code?

Hi @integral please find a simple example here: Code Snippet

@534h144k
autoConfig:true means columns should not be defined.
if columns are defined autoConfig:true will be ignored.

Thanks for clarifying this @integral. Might be worth adding this to the autoConfig documentation?
In your above example is data_grid a collection ?