Window not getting created

I have this javascript function being called at click of an image.

var dhxWins;
function launchPopUp(){
dhxWins = new dhtmlXWindows();
alert(1);
dhxWins.createWindow(“abc”,0,0,300,250);
alert(2);
}

The window is not getting created. I see “dhtmlxWindow” text at the bottom of my page with some space below it. Also there is a javascript error - “Invalid Argument. Code: 0 Line: 9 Char: 78225”

Please help.

Hello
There can be some issues below:

  1. incorrect skin of window
  2. alerts brake the window building
  3. incorrect viewport
    You can provide us completed demo to inspect this issue locally to help you
    docs.dhtmlx.com/auxiliary_docs__ … pport.html

Attached is the demo, please help.
window_demo.zip (54.5 KB)

Hi

please try attached
39.ZIP (54.5 KB)

Thanks, it is working now. There are couple of more issues here.

  1. Parking, Maximize, and Close buttons are not appearing on top right corner of the window.

  2. When I try to change the skin, window would not appear. Following is the code.

Please advise.

Nevermind, I figured out what the issue was.

However, can you please help me how to create a custom skin for windows? Or, if there is a documentation, please point me to there. Thanks.