Save datatable colums width

Hi team,

Is it possible to retrieve all columns witdh to be able to save them please ?

https://snippet.webix.com/rq0b1mb2

Regards,
Xavier

Hi,

You can read column width via getColumnConfig method.

Please, check an example: Code Snippet

Hi @NastassiaM ,

Thank you very much

or get list for all columns:
$$(‘your_table’).config.columns.map(function(e){return e.width})

Hi @Revencu
Thank you