I have several windows created with various objects attached. All windows are created using
dhxWins = new dhtmlXWindows() and dhxWins.createWindow()
I know I can adjust the border property in the style sheet to change the window border. What I need to do is dynamically change the border on specific windows.
So for example I create two windows:
w1 = dhxWins.createWindow(“w1”, 30, 40, 320, 240);
w2 = dhxWins.createWindow(“w2”, 300, 40, 320, 240);
Is there any way I can alter the border property of just w1?
Something like:
w1.style.border=“thick solid #FF00FF”;