Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Triple State Checkbox for Web

0.00/5 (No votes)
12 Mar 2007 1  
Triple State Checkbox for Web with Changeable CSS
Screenshot - TripleStateCheckbox.jpg

Introduction

In the case of inputting three states from the user, the checkbox fails. We can use Dropdown but it doesn't look so good. So, I thought of creating a triple-state-checkbox, just like Win Forms. This control uses the CSS to show three states of the checkbox. Currently, it returns 255 (byte's max value) for not selected, 0 - not selected and 1 for selected.

Background

This control is an extension of composite control which uses the Image and a Label control to

Using the code

Download the attached ZIP file which has a project named "YControls". Attach this project to your existing project or directly use the DLL from the BIN/debug folder of YControls project.

Web.Config

Registering the control to be available on all Forms. You can use any tagPrefix are per your stadards.

      <pages>
        <controls>
          <add namespace="YControls" assembly="YControls"  tagPrefix="YControls" />
        </controls>
      </pages>

Other Dependencies (CSS / Images)

Style.CSS and Images folder is currently bundled for the sample application. These are required. These can be changed as per requirement and themes can be applied.

Points of Interest

The application is not something which is differently coded, but the idea of trip-state-checkbox is new to web based forms, and found very useful in the cases of Yes/No/Default or anything which has something to do with triple-state.

History

This is the first version of triple-state-checkbox.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here