OnCheckedChanged event handler of asp:checkbox does not fire when checkbox is unchecked

100,304

Solution 1

This is because the control hierarchy (and the check boxes in particular) don't exist when ASP.NET executes the Control events portion of the ASP.NET page life cycle, as you had created them in the later PreRender stages. Please see ASP.NET Page Life Cycle Overview for more detailed overview of the event sequence.

I would err on the side of caution for @bleeeah's advice, for you're assigning a value to CheckBox.Checked inside rptLinkedItems_ItemDataBound, which would also cause the event handler to execute:


chkLinked.Checked = IsItemLinked(item);

Instead, move:


if (!Page.IsPostBack)
   {
      m_linkedItems = GetLinkedItems();
      rptLinkedItems.DataSource = GetLinkableItems();
      rptLinkedItems.ItemDataBound += new RepeaterItemEventHandler
          (rptLinkedItems_ItemDataBound);
      rptLinkedItems.DataBind();
   }

Into the Page.Load event handler.

Solution 2

Try usingAutoPostBack="true" like this:

<asp:CheckBox ID="chkLinked" runat="server" Checked="false"
    OnCheckedChanged="chkLinked_CheckedChanged" AutoPostBack="true"/>

Solution 3

Try re-subscribing to the CheckChanged event in your OnItemDataBound event ,

chkLinked.CheckedChanged += new EventHandler(chkLinked_CheckedChanged);

Solution 4

Use AutoPostBack="true" like this:

<asp:CheckBox ID="chkLinked" runat="server" AutoPostBack="true"
    Checked="false" OnCheckedChanged="chkLinked_CheckedChanged" />

Solution 5

Subscribe to the CheckChanged event in your Page_Init.

Share:
100,304
Jason
Author by

Jason

Updated on July 26, 2020

Comments

  • Jason
    Jason almost 4 years

    I have a repeater, in each ItemTemplate of the repeater is an asp:checkbox with an OnCheckedChanged event handler set. The checkboxes have the AutoPostBack property set to true. When any of the checkboxes is checked, the event handler fires. When any is unchecked, the event handler does not fire.

    Any idea why the event does not fire, and how I mgiht make it fire? Thanks.

    Simplified repeater code:

    <asp:Repeater ID="rptLinkedItems" runat="server">            
        <ItemTemplate>      
        <asp:CheckBox ID="chkLinked" runat="server" 
         Checked="false" OnCheckedChanged="chkLinked_CheckedChanged" />
        </ItemTemplate>    
    </asp:Repeater>
    

    The collection is bound to the repeater as follows:

    protected override void OnPreRenderComplete(EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            m_linkedItems = GetLinkedItems();
            rptLinkedItems.DataSource = GetLinkableItems();
            rptLinkedItems.ItemDataBound += new RepeaterItemEventHandler
                   (rptLinkedItems_ItemDataBound);
            rptLinkedItems.DataBind();
        }
    
        base.OnPreRenderComplete(e);
    }
    

    The OnItemDataBound event handler is as follows:

    private void rptLinkedItems_ItemDataBound(Object sender, RepeaterItemEventArgs args)
    {
        if (args.Item.ItemType == ListItemType.Item || args.Item.ItemType == ListItemType.AlternatingItem)
        {
            CategoryItem item = args.Item.DataItem as CategoryItem;
    
            Literal litItemName = args.Item.FindControl("litItemName") as Literal;
            CheckBox chkLinked = args.Item.FindControl("chkLinked") as CheckBox;
    
            litItemName.Text = item.Text;
    
            chkLinked.Checked = IsItemLinked(item);
            chkLinked.AutoPostBack = true;
            chkLinked.InputAttributes.Add("Value", item.Id.ToString());
        }
    }
    

    The OnCheckedChanged event handler is as follows:

    protected void chkLinked_CheckedChanged(Object sender, EventArgs args)
    {
        CheckBox linkedItem = sender as CheckBox;
        Boolean itemState = linkedItem.Checked;
        Int32 itemId = Int32.Parse(linkedItem.InputAttributes["Value"].ToString());
        DataAccessLayer.UpdateLinkedItem(m_linkingItem, Utilities.GetCategoryItemFromId(itemId), itemState);
    }
    

    P.S. If someone can also tell me why markdown doesn't work correctly for me...