Window title change

How to programmatically change the title in a modal window?

Hi :vulcan_salute: @sivai_2014, try this:

const myWindow = new dhx.Window({ title: "Initial title"})

myWindow.show()

myWindow.header.data.update("title", { value: "New title" } )
1 Like