Asp.net updatepanel clears checkboxlist selections - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:27:44Z http://stackoverflow.com/feeds/question/455988 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/455988/asp-net-updatepanel-clears-checkboxlist-selections 0 Asp.net updatepanel clears checkboxlist selections Jeremy 2009-01-18T22:02:27Z 2009-09-11T12:59:58Z <p>I have an ASP.Net CheckBoxList control inside an Ajax UpdatePanel.</p> <p>I will include the code (C#) along with the HTML below.</p> <p>I have found that it is something with the CheckBoxList not persisting through the post back.</p> <p>BTW, it is a little messy. It is a prototype.</p> <p>This is the method used to populate the original CheckBoxList</p> <pre><code>protected void BindCheckboxes() { chkBuildings.Items.Clear(); chkNeighborhoods.Items.Clear(); string city = ddlFindHome_Location.SelectedItem.Value.ToLower(); ResidentDataContext rdc = new ResidentDataContext(Utility.Lookup.GetResidentConnectionString()); var neighs = (from n in rdc.spNeighborhoods where n.vchCity.Equals(city) select n); foreach (var neighborhood in neighs) { ListItem li = new ListItem(); li.Value = neighborhood.intNeighborhoodID.ToString(); li.Attributes["onclick"] = string.Format("document.getElementById('{0}').click();", btnNeighHack.ClientID); li.Text = neighborhood.vchNeighborhood; chkNeighborhoods.Items.Add(li); } var builds = (from b in rdc.spBuildings join nb in rdc.spNeighborhoodBuildings on b.intBuildingID equals nb.intBuildingID join n in rdc.spNeighborhoods on nb.intNeightborhoodID equals n.intNeighborhoodID where n.vchCity.ToLower().Equals(city) select b).Distinct(); foreach (var buildings in builds) { ListItem li = new ListItem(); li.Value = buildings.intBuildingID.ToString(); li.Text = buildings.vchName; chkBuildings.Items.Add(li); } upNeighs.Update(); upBuilds.Update(); } </code></pre> <p>BindCheckboxes() is called from:</p> <pre><code>protected void ddlFindHome_Location_SelectedIndexChanged(object sender, EventArgs e) { BindCheckboxes(); } </code></pre> <p>This is the post back method for populating the Check Boxes of another CheckBoxList</p> <pre><code>protected void btnNeighHack_Click(object sender, EventArgs e) { List&lt;int&gt; neighs = new List&lt;int&gt;(); foreach (ListItem li in chkNeighborhoods.Items) { if (li.Selected) neighs.Add(Convert.ToInt32(li.Value)); } ResidentDataContext rdc = new ResidentDataContext(Utility.Lookup.GetResidentConnectionString()); var builds = (from b in rdc.spBuildings join nb in rdc.spNeighborhoodBuildings on b.intBuildingID equals nb.intBuildingID where neighs.Contains(nb.intNeightborhoodID) select b.intBuildingID).Distinct(); foreach (ListItem li in chkBuildings.Items) { li.Selected = false; } foreach (ListItem li in chkBuildings.Items) { if (builds.Contains(Convert.ToInt32(li.Value))) li.Selected = true; } upBuilds.Update(); } </code></pre> <p>Here is the ASP.Net HTML</p> <pre><code>&lt;asp:UpdatePanel ID="upNeighs" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;div style="font-weight: bold;"&gt; Neighborhood &lt;/div&gt; &lt;div style="padding-top: 7px; padding-left: 3px;"&gt; &lt;input type="checkbox" id="chkNeighborhood_CheckAll" /&gt;Select All &lt;/div&gt; &lt;hr /&gt; &lt;div&gt; &lt;asp:CheckBoxList ID="chkNeighborhoods" runat="server" /&gt; &lt;asp:Button style="display: none;" ID="btnNeighHack" runat="server" onclick="btnNeighHack_Click" /&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;asp:UpdatePanel ID="upBuilds" runat="server" UpdateMode="Conditional"&gt; &lt;ContentTemplate&gt; &lt;div style="padding-left: 6px; padding-top: 5px; font-weight: bold;"&gt; Building &lt;/div&gt; &lt;div&gt; &lt;asp:CheckBoxList ID="chkBuildings" runat="server" /&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> http://stackoverflow.com/questions/455988/asp-net-updatepanel-clears-checkboxlist-selections/456004#456004 0 Answer by BBetances for Asp.net updatepanel clears checkboxlist selections BBetances 2009-01-18T22:11:00Z 2009-01-18T22:11:00Z <pre><code> protected void BindCheckboxes() { if(!IsPostBack) { chkBuildings.Items.Clear(); chkNeighborhoods.Items.Clear(); string city = ddlFindHome_Location.SelectedItem.Value.ToLower(); ResidentDataContext rdc = new ResidentDataContext(Utility.Lookup.GetResidentConnectionString()); var neighs = (from n in rdc.spNeighborhoods where n.vchCity.Equals(city) select n); foreach (var neighborhood in neighs) { ListItem li = new ListItem(); li.Value = neighborhood.intNeighborhoodID.ToString(); li.Attributes["onclick"] = string.Format("document.getElementById('{0}').click();", btnNeighHack.ClientID); li.Text = neighborhood.vchNeighborhood; chkNeighborhoods.Items.Add(li); } var builds = (from b in rdc.spBuildings join nb in rdc.spNeighborhoodBuildings on b.intBuildingID equals nb.intBuildingID join n in rdc.spNeighborhoods on nb.intNeightborhoodID equals n.intNeighborhoodID where n.vchCity.ToLower().Equals(city) select b).Distinct(); foreach (var buildings in builds) { ListItem li = new ListItem(); li.Value = buildings.intBuildingID.ToString(); li.Text = buildings.vchName; chkBuildings.Items.Add(li); } upNeighs.Update(); upBuilds.Update(); } } </code></pre> <p>try that.</p> http://stackoverflow.com/questions/455988/asp-net-updatepanel-clears-checkboxlist-selections/456047#456047 0 Answer by Jeremy for Asp.net updatepanel clears checkboxlist selections Jeremy 2009-01-18T22:33:46Z 2009-01-18T22:33:46Z <p>I should have mentioned that the bindcheckboxes() function is called from</p> <pre><code>protected void ddlFindHome_Location_SelectedIndexChanged(object sender, EventArgs e) { BindCheckboxes(); } </code></pre> <p>So it is always a PostBack. But I think you might be onto something with that.</p> http://stackoverflow.com/questions/455988/asp-net-updatepanel-clears-checkboxlist-selections/456086#456086 0 Answer by BBetances for Asp.net updatepanel clears checkboxlist selections BBetances 2009-01-18T23:06:24Z 2009-01-18T23:06:24Z <p>Well if you clear your CheckBoxList everytime you change a selection, it's gonna clear your selected items too. I would load the items at page_load instead.</p> http://stackoverflow.com/questions/455988/asp-net-updatepanel-clears-checkboxlist-selections/456108#456108 0 Answer by Jeremy for Asp.net updatepanel clears checkboxlist selections Jeremy 2009-01-18T23:19:41Z 2009-01-18T23:19:41Z <p>After further research, I have found that the controls aren't persisting through the post back, and are dropping out of the view state. So each time it posts back, there is a null object returned from:</p> <pre><code>protected Control PostBackControl { get { return Page.FindControl(Request.Params.Get("__EVENTTARGET")); } } </code></pre> <p>but it sees that the drop down list's value isn't the default value and starts to rebind everything. </p> <p>When I only bind the checkbox lists when the PostBackControl is the drop down list, the controls never get bound since everything in the update panel is dropping out of scope.</p>