How to programmatically change the title in a modal window?
Hi @sivai_2014, try this:
const myWindow = new dhx.Window({ title: "Initial title"})
myWindow.show()
myWindow.header.data.update("title", { value: "New title" } )
1 Like