Click here to Skip to main content
Licence CPOL
First Posted 1 Jul 2008
Views 21,707
Downloads 379
Bookmarked 16 times

Customize CheckBox in ASP.NET

By | 4 Feb 2009 | Article
Customize checkbox control in ASP.NET

Introduction

I was working on a project in which I need a customize checkbox. I wanted to use an image for checkbox. I Googled, but could not find a solution for customize checkbox for ASP.NET checkbox control. The idea is that I want to write a code which makes an ASP.NET checkbox control customizable without writing any code in checkbox control.

Background

There are many solutions and articles present on the net for customize checkbox. But all of them work in HTML control. For each checkbox, you need to set a JavaScript function.

Using the Code

I have created this code to work with checkboxlist control. It is very easy to implement, drag any number of checkboxes on the page. Rest of the work will done by JavaScript code.

View online demo.

In the body tag, call the setup() function:

<body onload="setup()">

function setup()
 {
 var inputs=document.getElementsByTagName ("input")
 for(var i = 0; i < inputs.length; i++)
 {
     switch(inputs[i].type)
     {
     case "checkbox":
     inputs[i].style.display="None";
         if(inputs[i].checked)
         {
         inputs[i].nextSibling.innerHTML="<img src=" + inputs[i].nextSibling.innerHTML;
         }
         else
            {
             inputs[i].nextSibling.innerHTML=
			"<img src="+ inputs[i].nextSibling.innerHTML;
             }
         inputs[i].nextSibling.onclick=function(){cbclick(this)}
         break; 
    } 
 }
 }  

Points of Interest

There is no need to write code in ASP.NET checkbox list control.

License

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

About the Author

Ravinder007

Team Leader

India India

Member

I am working in Microsoft technology since 2001. Love to write code in JavaScript, asp.net and Ajax. See my site at http://www.ravinderweb.com/

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralOnce it checked; it does not uncheck PinmemberMKakkar20:07 26 Aug '10  
GeneralOn click image event Pinmemberspoodygoon8:11 5 Feb '09  
QuestionWhat if nextSibling==null? PinmemberSimon Capewell3:29 2 Jul '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 5 Feb 2009
Article Copyright 2008 by Ravinder007
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid