vote up 0 vote down star

Setting onchange event for CheckBoxList using the following code doesn't work.

chkListUserGroup.Attributes.Add("onchange", "document.forms[0].isRecordModified.value='true';");

How to set onchange event for CheckBoxList?

flag

57% accept rate
Are you getting any errors? What does the rendered HTML look like? – Jakob Gade Sep 5 at 9:09
Yeap, as long as you give it out, we cannot find accurate answer. – Aaron Sep 5 at 9:13
onchange event is attached to label element not to input label itself. – Ahmed Sep 5 at 9:28

2 Answers

vote up 0 vote down

Well actually it should be working. Because I write something in my code and it worked. It seems you need to check your javascript code by simply changing it with alert('hello');

 foreach (ListItem item in CheckBoxList1.Items)
 {
    item.Attributes.Add("onchange", "alert('hello')");
 }

This is my simple code and it is working.

link|flag
It works properly for CheckBox. – Ahmed Sep 5 at 9:24
@Aaron: I just deleted my answer, as you are absolutely right. Didn't know that the onchange event would automatically propagate to child elements. – Jørn Schou-Rode Sep 5 at 9:28
How to set it for an item in CheckBoxList. onchange event is attached to label element not to input label itself. – Ahmed Sep 5 at 9:32
@Ahmed, Okay I've changed the code. – Aaron Sep 5 at 9:44
The same issue, it affects label not input element. this is how it's rendered ... <SPAN onchange="document.forms[0].isRecordModified.value='true';"><INPUT id=chkListUserGroup_2 tabIndex=6 onclick="javascript:setTimeout('__doPostBack(\'chkListUserGroup$2\',\'\')', 0)" type=checkbox name=chkListUserGroup$2><LABEL for=chkListUserGroup_2>ACCOUNTS USER GROUP</LABEL></SPAN> – Ahmed Sep 5 at 9:54
vote up 0 vote down

Use onclick event,

 protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            CheckBoxList1.Items.Add("A");
            CheckBoxList1.Items.Add("B");
            CheckBoxList1.Items.Add("C");
            CheckBoxList1.Items.Add("D");

            foreach (ListItem item in CheckBoxList1.Items)
            {
                CheckBoxList1.Attributes.Add("onclick", "document.forms[0].isRecordModified.value=document.activeElement.checked");    
            }
        }
    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.