Check documentation for the latest version of dhtmlxSuite createWindow DHTMLX Docs

createWindow

creates a new window and returns its handler

object createWindow(string id,number x,number y,number width,number height);
idstringwindow id
xnumberX-coordinate of the top-left window corner
ynumberY-coordinate of the top-left window corner
widthnumberwidth of the window
heightnumberheight of the window
objectdhtmlXWindowsCell object instance

Example

var w1 = myWins.createWindow(id, x, y, width, height);

Back to top