Pins the Window. Pinned windows cannot be moved or resized.
Namespace: MindFusion.Common.UI
File: Window.js
JavaScript Copy Code |
---|
function pin () |
The following code creates a new Window instance, sets some of its common properties, opens and pins it:
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.open(); window.pin(); |