Search
TabPage.navigateUrl Property
See Also
 






Gets or sets a string, specifying the URL of the web page, that will be loaded in the content IFrame.

Namespace: MindFusion.Common.UI
File: TabPage.js

 Syntax

JavaScript  Copy Code

get navigateUrl() {}

 Property Value

String. A string specifying the URL of the web page, that will be loaded in the control's content IFrame.

 Example

The following code creates a new TabControl and adds a new TabPage to its tabs collection.

JavaScript  Copy Code

var tab = new ui.TabPage("«");
tab.header.size = new ui.Unit(20);
tab.header.interactive = false;
tab.header.tooltip = "Previous Tab";
tab.data = -1;
tab.navigateUrl = "products.html";
tab.header.cssClass = "tab-back";

tabControl.tabs.add(tab);

 See Also