modal
Optional. Defines whether a window is modal
modal?: boolean;
Default value: false
Example
const dhxWindow = new dhx.Window({
modal:true
});
dhxWindow.show();
A modal window blocks the main browser window when called.
Optional. Defines whether a window is modal
Default value: false
Example
const dhxWindow = new dhx.Window({
modal:true
});
dhxWindow.show();
A modal window blocks the main browser window when called.