modal
Optional. Defines whether a window is modal
modal?: boolean;
Default value: falseExample
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
Example
const dhxWindow = new dhx.Window({
modal:true
});
dhxWindow.show();
A modal window blocks the main browser window when called.