show()
shows a window on a page
show(left?: number, top?: number): void;
Parameters:
left: number
- optional, the left coordinate of a window positiontop: number
- optional, the top coordinate of a window position
Example
dhxWindow.show();
// showing a window at a specified position
dhxWindow.show("550", "230");
Related sample: Window. Showing / hiding Window