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
1.)Similarly is there any for us to update for headers also.
It works the same
Thanks Maksim