How to dynamically change the column data & header values?

Hi
I would like to change the columns & header data dynamically?

You can apply any changes to the column’s configuration and use refreshColumns to apply the changes. It can be used to change configuration of existing columns or to add|remove columns.

var column = dtable.getColumnConfig("title")
column.title = "New one";
column.refreshColumns();

Thanks maksim :slight_smile:

1.)Similarly is there any for us to update for headers also.

It works the same

http://webix.com/snippet/d581e516

Thanks Maksim