[CLOSED] Portal / Panel inside an Updatepanel

  1. #1

    [CLOSED] Portal / Panel inside an Updatepanel

    Hello,


    If you put a portal / panel control inside an updatepanel, after postback controls disappear without an error. (SVN 1316)


    Please note there is no problem with V7.0.


    <asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="False" UpdateMode="Conditional">
    ** * * * * *<ContentTemplate><asp:Button ID="Button1" runat="server" &#111;nclick="Button1_Click" Text="Button" />
    ** * * * * * * *<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    ** * * * * * * *<br />
    ** * * * * * * *<br />
    ** * * * * * * *<ext:Portal ID="Portal1" runat="server" Title="Portal">
    ** * * * * * * * * *<Body>
    ** * * * * * * * * * * *<ext:ColumnLayout runat="server">
    ** * * * * * * * * * * * * *<ext:LayoutColumn ColumnWidth=".33">
    ** * * * * * * * * * * * * * * *<ext:PortalColumn runat="server" StyleSpec="padding:10px 0 10px 10px">
    ** * * * * * * * * * * * * * * * * *<Body>
    ** * * * * * * * * * * * * * * * * * * *<ext:AnchorLayout runat="server">
    ** * * * * * * * * * * * * * * * * * * * * *<ext:Anchor Horizontal="100%">
    ** * * * * * * * * * * * * * * * * * * * * * * *<ext:Portlet runat="server" Title="Portlet 1">
    ** * * * * * * * * * * * * * * * * * * * * * * *<Body>
    ** * * * * * * * * * * * * * * * * * * * * * * * * *<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
    ** * * * * * * * * * * * * * * * * * * * * * * *</Body>
    ** * * * * * * * * * * * * * * * * * * * * * * *</ext:Portlet>
    ** * * * * * * * * * * * * * * * * * * * * *</ext:Anchor>
    ** * * * * * * * * * * * * * * * * * * * * *<ext:Anchor Horizontal="100%">
    ** * * * * * * * * * * * * * * * * * * * * * * *<ext:Portlet runat="server" Title="Portlet 2" />
    ** * * * * * * * * * * * * * * * * * * * * *</ext:Anchor>
    ** * * * * * * * * * * * * * * * * * * *</ext:AnchorLayout>
    ** * * * * * * * * * * * * * * * * *</Body>
    ** * * * * * * * * * * * * * * *</ext:PortalColumn>
    ** * * * * * * * * * * * * *</ext:LayoutColumn>
    ** * * * * * * * * * * * * *<ext:LayoutColumn ColumnWidth=".33">
    ** * * * * * * * * * * * * * * *<ext:PortalColumn runat="server" StyleSpec="padding:10px 0 10px 10px">
    ** * * * * * * * * * * * * * * * * *<Body>
    ** * * * * * * * * * * * * * * * * * * *<ext:AnchorLayout runat="server">
    ** * * * * * * * * * * * * * * * * * * * * *<ext:Anchor Horizontal="100%">
    ** * * * * * * * * * * * * * * * * * * * * * * *<ext:Portlet runat="server" Title="Portlet 3" />
    ** * * * * * * * * * * * * * * * * * * * * *</ext:Anchor>
    ** * * * * * * * * * * * * * * * * * * *</ext:AnchorLayout>
    ** * * * * * * * * * * * * * * * * *</Body>
    ** * * * * * * * * * * * * * * *</ext:PortalColumn>
    ** * * * * * * * * * * * * *</ext:LayoutColumn>
    ** * * * * * * * * * * * * *<ext:LayoutColumn ColumnWidth=".33">
    ** * * * * * * * * * * * * * * *<ext:PortalColumn runat="server" StyleSpec="padding:10px">
    ** * * * * * * * * * * * * * * * * *<Body>
    ** * * * * * * * * * * * * * * * * * * *<ext:AnchorLayout runat="server">
    ** * * * * * * * * * * * * * * * * * * * * *<ext:Anchor Horizontal="100%">
    ** * * * * * * * * * * * * * * * * * * * * * * *<ext:Portlet runat="server" Title="Portlet 4" />
    ** * * * * * * * * * * * * * * * * * * * * *</ext:Anchor>
    ** * * * * * * * * * * * * * * * * * * *</ext:AnchorLayout>
    ** * * * * * * * * * * * * * * * * *</Body>
    ** * * * * * * * * * * * * * * *</ext:PortalColumn>
    ** * * * * * * * * * * * * *</ext:LayoutColumn>
    ** * * * * * * * * * * *</ext:ColumnLayout>
    ** * * * * * * * * *</Body>
    ** * * * * * * *</ext:Portal>
    ** * * * * *</ContentTemplate>
    ** * * *</asp:UpdatePanel>







    ** * * *protected void Button1_Click(object sender, EventArgs e)
    ** * * *{
    ** * * * * *Label1.Text = DateTime.Now.ToString();
    ** * * * * *Label2.Text = DateTime.Now.ToString();
    ** * * * * *UpdatePanel1.Update();
    ** * * *}
  2. #2

    RE: [CLOSED] Portal / Panel inside an Updatepanel

    Hi,

    Thanks for pointing out the bug. We are investigating it. We will update this thread when fix will be committed to the SVN
    *
  3. #3

    RE: [CLOSED] Portal / Panel inside an Updatepanel

    Hi*Vladimir,I'am still waiting for the solution. Is there any news since this is an apparent bug ?
    Kind regards.
    -tansu
  4. #4

    RE: [CLOSED] Portal / Panel inside an Updatepanel

    Hi tansu,

    Unfortunatelly we are still working on UpdatePanel. At this moment UpdatePanel is still broken
    *
  5. #5

    RE: [CLOSED] Portal / Panel inside an Updatepanel

    Hi tansu,

    We've just completed several changes to the <asp:UpdatePanel> support with the Toolkit.

    Things should be working much better now.

    If you get a chance, please SVN update and retest your application with the latest code.

    Hope this helps.

    Geoffrey McGill
    Founder
  6. #6

    RE: [CLOSED] Portal / Panel inside an Updatepanel

    Hi Geoffrey,

    OK, it works now, thank you for your help.


    -tansu

Similar Threads

  1. Updating GridPanel inside UpdatePanel
    By sedgar in forum 1.x Help
    Replies: 1
    Last Post: Aug 08, 2012, 7:06 PM
  2. UpdatePanel in ext:Panel
    By rach in forum 1.x Help
    Replies: 2
    Last Post: Apr 23, 2012, 6:40 AM
  3. [CLOSED] [1.0] GridPanel UI Inside a Portal
    By Ben in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 23, 2010, 12:30 PM
  4. [CLOSED] [1.0] Menu inside updatepanel
    By tansu in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Dec 12, 2009, 5:57 PM
  5. TabPanel inside UpdatePanel - fails
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 05, 2008, 9:02 PM

Posting Permissions