Why does a button control need to be clicked twice? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:46:25Z http://stackoverflow.com/feeds/question/44453 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice 2 Why does a button control need to be clicked twice? kskoch 2008-09-04T18:46:52Z 2009-02-19T09:12:08Z <p>I've got a web application working using VB and Ajax. I'm using updatepanels to avoid the irritating "flicker" on postbacks to the server. </p> <p>I would like to have a button control defined within the updatepanel itself (tried moving it outside and got some catastrophic error, so left it there) that makes the current panel not visible and a sibling panel visible. This works with the exception that the button must be clicked twice. Not double clicked, but clicked once than clicked again. </p> <p>In setting breakpoints I discovered the code behind that's attached to the button is actually being executed on the first click, but the panels don't switch as expected. If I click the same button OR worse yet, a different button, the expected behavior of the second panel appearing occurs. However, with the second button being clicked there's an unwanted bonus of a third panel being displayed, the third panel being made visible due to the second button being clicked.</p> <p>I'm assuming this behavior is due to the updatepanel and its Ajax nature. Is there a way to avoid the second click? Am I misusing the updatepanel? I really wanted to use a modal popup (right out of the AjaxToolKit) but had problems with posting back the data so I opted for this approach. Any insights, assistance, even criticism would be welcome as this has plagued me long enough. Thanks</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/44456#44456 0 Answer by Joel Coehoorn for Why does a button control need to be clicked twice? Joel Coehoorn 2008-09-04T18:48:26Z 2008-09-04T18:48:26Z <p>It would help if you posted the button click code.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/44459#44459 1 Answer by Ryan Farley for Why does a button control need to be clicked twice? Ryan Farley 2008-09-04T18:50:15Z 2008-09-04T18:50:15Z <p>If you get rid of the UpdatePanels do things work as expected with PostBacks? Chances are something in your Page_Load or other event higher up the chain are "resetting" things in some way before it gets to your click event. Could this be the case?</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/44466#44466 0 Answer by Jimmy for Why does a button control need to be clicked twice? Jimmy 2008-09-04T18:53:00Z 2008-09-04T18:53:00Z <p>Is the button a Trigger of the updatepanel? Also, does setting updatemode to Always fix the problem?</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/44471#44471 0 Answer by Mike for Why does a button control need to be clicked twice? Mike 2008-09-04T18:54:14Z 2008-09-04T18:54:14Z <p>I have run into this before and resolved it, I just can't remember how. I will try to find my old code and get back to you. one thought, do you have EnablePartialRendering enabled in your scriptmanager? maybe try wrapping both containers in a third panel.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/44507#44507 0 Answer by kskoch for Why does a button control need to be clicked twice? kskoch 2008-09-04T19:04:54Z 2008-09-04T19:04:54Z <p>WOW! What great response time. Here is sample code. The button is not a trigger. Updatemode= Always is set.</p> <pre><code>&lt;asp:panel ID="Panel2" DefaultButton="btnPrvCmt" runat=server&gt; &lt;asp:Panel id="pnldetTI" runat="server" cssclass="collapsePanel" &gt; &lt;asp:UpdatePanel ID=upnlTransfers runat=server UpdateMode=Always&gt; &lt;ContentTemplate&gt; &lt;asp:GridView ID="gvFundIn" runat="server" AllowSorting="True" ShowFooter=true DataSourceID="sdsTransfers" DataKeyNames="FundsIn_ID,Last_Update_Date,Follow_Up_Date" AutoGenerateColumns="False" Width="510px" &gt; &lt;Columns&gt; </code></pre> <p>blah blah blah</p> <pre><code> &lt;/Columns&gt; &lt;EmptyDataTemplate&gt; &lt;/EmptyDataTemplate&gt; &lt;/asp:GridView&gt; &lt;asp:Panel ID="pnldvFundInActions" runat=server&gt; &lt;br /&gt; &lt;div align=center&gt; &lt;asp:Button ID="btnTIPending" runat="server" Width="215px" cssclass="input_btn_db" Text=" Transfer In Pending Items " OnCommand="btnPndItm_Click" CommandName="FundsIn" /&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;div align=center&gt; &lt;asp:Button ID="btnTIPrvCmt" runat="server" Width="215px" cssclass="input_btn_db" Text="Add Transfer In Comments " OnCommand="btnPrvCmt_Click" CommandName="FundsIn" /&gt; &lt;/div&gt; &lt;/asp:Panel&gt; &lt;/asp:Panel&gt; &lt;asp:SqlDataSource &lt;/asp:SqlDataSource&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;/asp:Panel&gt; &lt;/asp:panel&gt; </code></pre> # <p>Code Behind</p> # <pre><code>Protected Sub btnPndItm_Click(ByVal sender As Object, ByVal e As CommandEventArgs) Handles btnPndItm.Command If Not e.CommandName = "" Then sdsPndItm.SelectParameters("TYPE").DefaultValue = CType(e.CommandName, String) Else sdsPndItm.SelectParameters("TYPE").DefaultValue = "Account" End If If Not e.CommandArgument = "" Then sdsPndItm.SelectParameters("SecondID").DefaultValue = CType(e.CommandArgument, Integer) Else sdsPndItm.SelectParameters("SecondID").DefaultValue = CType(Session("AcctID"), Integer) End If sdsPndItm.DataBind() Panel2.Visible = False pnlPndItm.Visible = True 'If Session("GroupID") = 4 Then gvPndItm.Columns(0).Visible = True 'Else ' gvPndItm.Columns(0).Visible = False 'End If End Sub Protected Sub btnPrvCmt_Click(ByVal sender As Object, ByVal e As CommandEventArgs) Handles btnPrvCmt.Command If Not e.CommandName = "" Then SqlDataSource5.SelectParameters("TYPE").DefaultValue = CType(e.CommandName, String) Session("PrvCmtType") = CType(e.CommandName, String) Else SqlDataSource5.SelectParameters("TYPE").DefaultValue = "Account" Session("PrvCmtType") = "Account" End If If Not e.CommandArgument = "" Then Session("SecondID") = CType(e.CommandArgument, Integer) Else Session("SecondID") = CType(Session("AcctID"), Integer) End If SqlDataSource5.DataBind() Panel2.Visible = False pnlPrvCmt.Visible = True End Sub </code></pre> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/44568#44568 0 Answer by Oded for Why does a button control need to be clicked twice? Oded 2008-09-04T19:29:33Z 2008-09-04T19:29:33Z <p>Your update panel is sitting inside the other panels.</p> <p>Should that be the other way around? AFAIK only controls within the update panel will get updated in via the AJAX call.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/45243#45243 0 Answer by kskoch for Why does a button control need to be clicked twice? kskoch 2008-09-05T04:48:35Z 2008-09-05T04:48:35Z <p>Ok, so I posted an example of the code. If I'm not using updatepanels, the buttons work as they ought to. And, I reiterate, when breakpoints are set on the button click handling code, the sub does execute. It's just that Panel2 stays visible as if the browser never received a rerendered page. If you were to look at the value of visible for the two panels they would contain the expected values, the page just doesn't change.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/46573#46573 1 Answer by Mike for Why does a button control need to be clicked twice? Mike 2008-09-05T19:01:26Z 2008-09-05T19:01:26Z <p>I think your problem is that only the update panel is receiving data from the server after the method executes. The panel your are trying to change is outside of the update panel so it does not know that its properties have changed. </p> <p>You either need to do a full page postback or have the panel you wish to modify inside the update panel.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/47246#47246 0 Answer by kskoch for Why does a button control need to be clicked twice? kskoch 2008-09-06T04:06:53Z 2008-09-06T04:06:53Z <p>SO should there be one updatepanel overarching the entire page? Instead of multiple updatepanels around various gridviews on the page. Okay so let me try more details. I've got panel A and Panel B of which only one or the other should be viewable at a time. Panel B contains the "modal popup" activity I want to perform when a button on Panel A is clicked. Panel A is has sub panels C, D, and E. These are AjaxToolKit collapsible panels that can be visible (as long as A is visible) by themselves or in combinations. There are updatepanels on each of C,D, and E to handle update buttons and so forth. There is a button control on each of C,D and E that when clicked will switch from panel A to panel B. Something is done on panel B and when finished, a click switches back to panel A. In order for the "B" button to work on C, D and E, it must be within their individual updatepanels. Now I may have tried making one overall updatepanel around panels A and B. But I think that didn't work so I ended up with the updatepanels within each od C, D and E. THe "B" button ONLY switches when it is clicked twice.</p> <p>I'm hoping Mike can find what he referenced.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/47247#47247 0 Answer by kskoch for Why does a button control need to be clicked twice? kskoch 2008-09-06T04:09:34Z 2008-09-06T04:09:34Z <p>Mike, Is there a way to force the full page postback from within the updatepanel?</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/259156#259156 0 Answer by Kyralessa for Why does a button control need to be clicked twice? Kyralessa 2008-11-03T16:24:31Z 2008-11-03T16:24:31Z <p>Here's a fairly simple solution. (I was having the same problem this morning.)</p> <p>The UpdatePanel can't render stuff outside itself. So, as you noticed, the updates are happening, but you're not seeing the result.</p> <p>The easiest solution is to force a full postback. You can do that like this:</p> <pre><code>protected override void OnInit(EventArgs e) { var scriptManager = ScriptManager.GetCurrent(this); // or this.Page in a UserControl, etc. scriptManager.RegisterPostBackControl(someButton); scriptManager.RegisterPostBackControl(someOtherButton); // etc. for each control that needs to update something outside the UpdatePanel } </code></pre> <p>This still allows the buttons themselves to be updated in the UpdatePanel by Ajax (e.g. changing their state to disabled or enabled). The full postback only happens if the buttons are clicked.</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/269424#269424 0 Answer by TonyB for Why does a button control need to be clicked twice? TonyB 2008-11-06T16:54:34Z 2008-11-06T16:54:34Z <p>Like others have said an update panel only updates its contents, thats one of the main benefits of using it.</p> <p>Panel2 and pnlPrvCmt need to be inside your update panel for your button click method to work. Another option would be to put Panel2 inside one update panel and pnlPrvCmt inside a second update panel. Then any control inside either update panel will cause both to refresh, as long as the UpdateMode=Always (which it is by default).</p> http://stackoverflow.com/questions/44453/why-does-a-button-control-need-to-be-clicked-twice/564488#564488 0 Answer by rohit for Why does a button control need to be clicked twice? rohit 2009-02-19T09:12:08Z 2009-02-19T09:12:08Z <p>we an update panel and in it we have a grid view. in grid view we have check box and file uploader. when we click check box then visibility of file uploader will be true. but when we click on upload button then we never found value of fileuploader in aspx.cs page. please help me </p> <p>thanx in advance</p>