- May 30, 2019
- Posted by: iSummation Team
- Category: ColdFusion
No Comments

Hello Friends,
CFWindow has attribute for giving title to window. Once it is created, we can use it multiple time for different purposes with same title otherwise we need to create it again if we want to change title. Using setTitle function there is no need to create again. We can just change window title name runtime. Have a look at code below.
1 2 |
var objWin = ColdFusion.Window.getWindowObject("cfwindow1"); objWin.setTitle('Change Title over here'); |