Gets or sets a value indicating whether this Window can be minimized.
Namespace: MindFusion.Common.UI
File: Window.js
SyntaxJavaScript
Copy Code
|
|---|
get allowMinimize() {} |
A Boolean value. true to show a minimize button, otherwise false.
ExampleThe following code creates a new Window instance, sets some of its common properties and opens it:
JavaScript
Copy Code
|
|---|
| var window = new ui.Window(); window.top = ui.Unit.percentage(25); window.left = ui.Unit.percentage(25); window.title = "Statistics"; window.data = chartItem.item; window.templateUrl = "ChatWindow.html"; window.allowMinimize = false; window.open(); |
See Also