Click here to Skip to main content
Click here to Skip to main content

CheckBoxList acts like RadioButtonList

By , 3 Jan 2013
 

Introduction

This article is about how to use CheckBoxList to work like RadioButtons using JavaScript.

Using the code

Just place the code given below in the head section of your .ASPX page:

<script type="text/javascript" language="javascript">
    function SetChkBx(event) {
        var chkBoxCount = document.getElementById('<%= chkList1.ClientID %>').getElementsByTagName("input");
        for (i = 0; i < chkBoxCount.length; i++) {
            if (chkBoxCount[i].type == 'checkbox')
                chkBoxCount[i].checked = false;
        }
        if (event.target == null) {
            event.srcElement.checked = true;
            alert("You selected " + event.srcElement.value);
        }
        else {
            event.target.checked = true;
            alert("You selected " + event.target.value);
        }
    }
</script>

Points of Interest 

Here is the code, event.target is used which is always null for IExplorer. event.srcElement is used in IExplorer which tell the browser about the source element and and event.target is not null for other browsers. So for other browsers we we use this.

Place the below tag under your <Form> tag.

<asp:CheckBoxList ID="chkList1" runat="server" RepeatDirection="Vertical" 
    RepeatLayout="Flow" OnClick="javascript:SetChkBx(event);">
    <asp:ListItem>Apple</asp:ListItem>
    <asp:ListItem>Mango</asp:ListItem>
    <asp:ListItem>Banana</asp:ListItem>
    <asp:ListItem>Guava</asp:ListItem>
    <asp:ListItem>Grapes</asp:ListItem>
</asp:CheckBoxList>

License

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

About the Author

Agrawal Ashok
Software Developer (Junior)
India India
Member
No Biography provided

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.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 3membersandeepkumarvemula11 Feb '13 - 22:28 
k

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 3 Jan 2013
Article Copyright 2013 by Agrawal Ashok
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid