Dynamically add column in datatable with custom name

I want to add new column to existing datatable view with custom colum name, is it possible ?

yes, it is possible. just don’t forget to use refreshColumns after operation
https://docs.webix.com/api__ui.datatable_refreshcolumns.html

table.config.columns.push({
   id: "new_column",
   ...
})
table.refreshColumns();

https://snippet.webix.com/52b0a93b

https://docs.webix.com/datatable__columns_configuration.html#addingdeletingcolumnsdynamically

In this example when we add column we get a column by the name “NEW”,
but can we edit this name to be user input through UI ?

https://snippet.webix.com/rnjnoag6

Hi, this works.
Is it possible to load column name from the input json itself in the datatable view