Click here to Skip to main content
15,892,005 members
Articles / Web Development / ASP.NET
Tip/Trick

A Tab User Control with Client Side Object

Rate me:
Please Sign up or sign in to vote.
4.07/5 (4 votes)
18 Jan 2014CPOL3 min read 14.3K   298   6   4
A tab user control with embedded client side object

Introduction

This tip introduces a .NET tab control which can render a tab style HTML content based on the parameters passed. It will also render a unique embedded client side object with the same id as the control's id. With this object, developers can manipulate the tab's behaviours from JavaScript codes, like to click a tab, show/hide a single tab, or even show/hide the whole tab array.

Background

Tab is quite often used to manage page's layout and control the other page element's behaviour. For example, you can define many divs on a page, and show only one div at a time based on which tab is clicked. However, there is not really a "tab" element in HTML. Developers usually have to write the HTML content by hand to mimic a tab on the page. It is kind of hard-coding issue: too much coding burden, less functionalities provided, and not easy to reuse. To make an easy to use (both server side and client side) one, I came up with this user control.

Prepare the Example Solution

Download and open the example solution, you will see 3 folders and 1 .NET page.

  1. "controls", which contains the user control "TabsControl.ascx"
  2. "images", which contains the images used in the control
  3. "css", which contains the CSS file for the control, "TabsControl.css"
  4. "Default.aspx" page, which demo how to use the control and the client side object

In your own application, if you rename or replace the folders "images" and "css", you may need to change some codes in the .css file and your page to ensure the referenced file has a correct path. Anyway, you know it.

Code Example (Server Side)

To use the tab control, first you need to register it in your page:

ASP.NET
<%@ Register Src="controls\TabsControl.ascx" TagName="TabsControl" TagPrefix="tc" %>  

Then you need to reference the specific CSS file for the control:

ASP.NET
<link href="css/TabsControl.css" rel="stylesheet" type="text/css" />

Now you can declare the control instance in your page, like this:

ASP.NET
<tc:TabsControl ID="Tabs1" runat="server" /> 

From codes behind, assign parameters to the tab control in page load, like below:

C#
 ArrayList TabParam = new ArrayList(new object[] { 
              new ArrayList( new object [] { true, "Microsoft", "OnTabClick(0)", true } ),
              new ArrayList( new object [] { false, "Facebook", "OnTabClick(1)", true } ),
              new ArrayList( new object [] { false, "Apple", "OnTabClick(2)", true } )
        });
 
Tabs1.TabParams = TabParam; 

You can see for each tab there is an ArrayList object assigned, which represents such a parameters array:

TabIsActive, TabText, TabClientSideOnClickEventHandler, TabIsVisible

In this way, you can set initially which tab is current active tab, and even can hide some tabs in the beginning and display it later from client side.

The control has its own on tab click event handler which is to change the style of the clicked tab to be active and turn the previous tab to be inactive, so you don't need to care about that. However, if in any specific case you don't want the tab to do this job, what do you need to do? Quite simple, turn a flag of the control to be false:

C#
Tabs1.IncludeClientCodeToSetActiveTab = false; 

Bingo! Now you are able to see a tab on your page like below (from the example):

tab example

Code Example (Client Side Object)

Like mentioned above, the control will render a client side object to help you manipulate the behaviour of the tab, like click, show or hide.

I do this because in my past projects, it is quite often required to raise a tab click from codes, or to show/hide a tab dynamically according to logic. Maybe or maybe not, you have the same experience like me. Hard coding to do this is a really bad practice so I create the client side object to help.

The client side object has the same ID as the control's ID you declared. In the example, the tab control's ID is "Tabs1". Therefore, there is a "Tabs1" object automatically created on client side for you to use.

The use of methods in this object is like below:

JavaScript
Tabs1.ClickTab(1); //raise a click on the tab on index 1
Tabs1.ClickTabByText("Apple"); //raise a click on the tab with text "Apple"
Tabs1.ShowTabArray(); //Show the whole tab control
Tabs1.HideTabArray(); //Hide the whole tab control
Tabs1.ShowTabByIndex(1); //Show the tab on index 1
Tabs1.HideTabByIndex(1); //Hide the tab on index 1
Tabs1.ShowTabByText("Apple"); //Show the tab with text "Apple"
Tabs1.HideTabByText("Apple"); //Hide the tab with text "Apple" 

Limitation and Extensibility

Some of the code of this control is written with jQuery, so you need to reference JQuery in your page.

If the font size and color does not quite match with your page style, then you probably need to modify the control's CSS file by yourself. It might be some sort of additional work.

The control is open and free, if you need the object to do more work, you are free to extend it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) TrafficTech Inc.
Canada Canada
I am Sitang Ruan, a .Net developer focus on web application development for 6 years. I like to write elegant and efficient codes to provide user a smooth and solid experience. I also like to take very complicated and challenging tasks.

Comments and Discussions

 
QuestionMy Vote 5 Pin
gideonseroney@yahoo.com18-Feb-14 20:41
gideonseroney@yahoo.com18-Feb-14 20:41 
QuestionRemember Tab on PostBack Pin
gideonseroney@yahoo.com18-Feb-14 20:40
gideonseroney@yahoo.com18-Feb-14 20:40 
AnswerRe: Remember Tab on PostBack Pin
Sitang Ruan20-Feb-14 3:34
professionalSitang Ruan20-Feb-14 3:34 
GeneralMy vote of 5 Pin
Dino.Liu19-Jan-14 22:06
Dino.Liu19-Jan-14 22:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.