Class wwWebTabControl
The wwWebTabControl is an easy to use TabStrip control that allows you to break large amounts of content into separate pages. The control works via client script to manage and activate specified HTML containers dynamically when a tab page is selected. To specify tab 'pages' that are to be activated on tab clicks you specify a client DOM id for the element to be shown or hidden appropriately.
At runtime the tab control looks like this (with default styles applied):
The tab control consists only of a tab strip, which determines various display characteristics and a collection wwWebTabPages that define the behavior for each tab button when clicked. The idea is that a tab button is associated with an HTML DIV element that is activated when the button is clicked and hidden when another tab is activated.
The following markup gives a good idea of the structure for the control:
html
html
<ww:wwWebTabControl runat="server" id="Tabs"
SelectedTab="divDisplay" TabHeight="30" TabWidth="120">
< TabPages>
<ww:wwWebTabPage runat="server"
TabPageClientId="divInfo"
Text=" Information"
TabImage="images/info.gif"
Style="text-align:left" ActionLink="" >
</ww:wwWebTabPage>
<ww:wwWebTabPage runat="server"
TabPageClientId="divSelection"
Text="Selection" ActionLink=""
TabImage="">
</ww:wwWebTabPage>
...
< /TabPages>
</ww:wwWebTabControl>
javascript
javascript
ActivateTab("TabControl1","Page 1 Caption")
You pass the Client Control Id and the name or tab index as parameters. ActivateTab() is generated into any page that contains a Tab Control so you can use client script to change pages.
For more information see How the wwWebTabControl works.
Class Members
Member | Description | |
---|---|---|
![]() |
AddTab | This method is used to programmatically add tabs to the Tab control. It sets base settings and returns the tab so you can further customize the individual tab.
o.AddTab(lcText,lcLink,lcClientId)
|
![]() |
GetTabPage | Retrieves a TabPage by its Id or numeric index. Returns null if not found. Same behavior as TabControl.TabPages.Item(tabId), but provided for easier discoverability.
o.GetTabPage(lcTabId)
|
![]() |
SelectedTab | The TabPageClientId that specifies the active tab. |
![]() |
OnClientActivate | Allows you to specify a JavaScript handler that is called when a page is activated. The handler is passed the tab index number. The following JavaScript code demonstates the client handler which… |
![]() |
SelectedTabCssClass | CSS Class for the selected tab button display. Determines how the tab renders. |
![]() |
OnClientActivate | An optional client script event handler that can be fired when a page change occurs. The handler receives the page number that is about to be activated and should return true to indicate that the… |
![]() |
TabCssClass | CSS Class for the regular button display. Determines how the tab renders. |
![]() |
TabPages | Contains a collection of all the Tabs for this tab control. Based on the [wwWebTabPage class](vfps://Topic/_23V190JRD) which contains properties for Text, TabPageClientId, ActionLink, TabImage and… |
Assembly: webcontrolsextended.prg
See also
How the wwWebTabControl worksOnBindingErrorLink Client Function
© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic