Maximizes the Window.
Namespace: MindFusion.Common.UI
File: Window.js
SyntaxJavaScript
Copy Code
|
|---|
function maximize () |
ExampleThe following code creates a new Window instance, sets some of its common properties and calls its maximize method:
JavaScript
Copy Code
|
|---|
| var window = new ui.Window(); window.top = ui.Unit.percentage(25); window.left = ui.Unit.percentage(25); window.title = clickedItem.title; window.data = clickedItem.item; window.templateUrl = "ChatWindow.html"; window.maximize(); |
See Also