Click here to Skip to main content
15,867,756 members
Articles / Programming Languages / Javascript

A tabbed dialog box in JavaScript

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
4 May 2007CPOL3 min read 41.7K   391   11   2
This article shows how to implement/simulate a tabbed dialog box in JavaScript.

Introduction

There are a number of server-based technologies that make web programming simpler by providing a set of controls that implement the types of controls that have existed on client-based applications for a long time. One of those controls that helps organize a larger volume of data is the tabbed dialog control. But, what if you are using a technology that does not have a server-based tabbed dialog control? This article describes how to implement what appears to the user as a tabbed dialog box using only JavaScript, running completely on the client.

Screenshot - Menu1ScreenshotSmaller.png

Background

The functionality of the tabbed dialog box control requires one or more tabs that the user clicks on to display the data for that tab. Typically, each tab represents a subset of the entire data to be operated on. For example, there may be too much data about a customer to display at one time. A tabbed dialog box could segment the customer data into demographic data (name, address, city, state, zip, etc.), contact data (primary contact, secondary contact, etc.), and other data (credit limit, account balance, payment history, etc.). Each of the segments (demographic, contact, and other) would have a tab. When the particular tab is clicked, only the data in that segment would display. All other data would be hidden.

Today, there is no HTML object that implements a tabbed dialog box. But we can simulate one with just a little JavaScript.

Using the code

The essence of a tabbed dialog box is that data items are grouped together and displayed only when the particular tab is clicked. Data in other groups is hidden from the user. To do this in JavaScript requires that we use an HTML tag that allows us to group data together. That tag is the <DIV> which allows us to group data items together that belong in a group. The other requirement is that we must be able to display and hide groups of data so that only one group is visible at one time.

To identify one <DIV> from another, we'll need to include the ID attribute. We can use any value for the ID that we want, but each div must have a unique ID value. The div tag would look something like this:

HTML
<DIV id="demoTabId"> ... </div>
Making data invisible

At first glance, we might be tempted to use the visibility style attribute, but that won't work for what we want. The visibility style attribute could make our data invisible, but it would still take up the same space on the page. We don't want that! We want whatever data is visible to display in the same location on the page. To make the data invisible and not take up any space on the page, we'll use the display style attribute. Setting the display style attribute to none will make it invisible, plus it won't take up any space on the page. Just what we want.

The tabs

Implementing the tabs is easy. If we don't care that they actually look like tabs, we can use normal HTML buttons. The buttons would be defined like this:

HTML
<INPUT Type="button" Value="Demographics" OnClick="javascript:displayTab('demoTab');">

If we want the tabs to actually look like tabs, we'll probably use a set of images that are created to look like tabs. The OnClick event of the <IMG> control would be the same as that of the button control above.

The JavaScript code

The JavaScript code that does the actual work is pretty simple. For the tab to show, the code will set [ctrlId].style.display='block', plus we'll set the other tabs to [ctrlId].style.display='none'. It looks like this:

JavaScript
function displayTab(tab)
{
    // set all the tabs to not display
    demoTabId.style.display = "none";
    contactTabId.style.display = "none";
    otherTabId.style.display = "none";
    // set the selected tab to display
    var ctrl = document.getElementById(tab)
    ctrl.style.display = "block";
}

Calling this JavaScript code passing the ID value of the div tag will display only the selected tab and hide all the others.

Summary

Simulating a tabbed dialog box using only JavaScript is an easy and effective way to display only the data your user wants to see and operate on.

License

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


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionexample? Pin
ryanoc3334-May-07 6:58
ryanoc3334-May-07 6:58 
AnswerRe: example? Pin
GregD4-May-07 7:56
GregD4-May-07 7:56 

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.