Gets or sets the title of this Window.
Namespace: MindFusion.Common.UI
File: Window.js
The following code creates a new Window instance, sets its title property together with other 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.minWidth = ui.Unit.pixel(600); window.minHeight = ui.Unit.pixel(600); window.title = "Statistics"; window.data = chartItem.item; window.templateUrl = "ChatWindow.html"; window.iconSrc = "icons\chart.png"; window.open(); |