I found the problem.
the panel. This prevents the popup from disappearing during the postback.
trigger.
"Nathan Sokalski" wrote:
> What is it that you are expecting to happen when the user makes a new
> selection from the DropDownList? I noticed that you do not have any Triggers
> specified for the UpdatePanel, which means that only the child controls of
> the UpdatePanel will trigger a callback. The DropDownList should still
> trigger a postback, but it will not be the same as what would happen when
> the DropDownList was a child of the UpdatePanel. You may want to take a look
> at the <triggers> element, which goes inside the <UpdatePanel>. I found it
> much easier to use the UpdatePanel once I started using Triggers, because it
> gave me so much more control over what causes what to happen, without
> needing to worry quite as much about which controls were inside the
> UpdatePanel. If you have not used the triggers element before, feel free to
> ask, and I'm sure there is plenty of help online as well. Good Luck!
> --
> Nathan Sokalski
> njsokalski@hotmail.com
>
http://www.nathansokalski.com/ >
> "jonefer" <jonefer@discussions.microsoft.com> wrote in message
> news:F2EA253D-EBED-4C03-8A95-ABDD85CFE140@microsoft.com...
> > Ok, thank you...
> >
> > I tried to paste all of it, but I got an error saying the post could only
> > take so much.
> >
> > So here are two sections
> > The section that has the dropdown list - "cmbPCP" is as follows
> >
> >
> > <td style="font-weight: bold; font-size: x-small; width: 67px; color:
> > black;
> > font-family: 'Century Gothic'; height: 10px;">
> > PCP Name:</td>
> > <td style="width: 90px; height: 10px;">
> >
> > <asp:DropDownList ID="cmbPCP" runat="server"
> > AutoPostBack="True"
> > DataTextField="ProvName"
> > DataValueField="ProvID" Style="font-weight: bold; font-size: x-small;
> > color: black; font-family: 'Century
> > Gothic'"
> > Width="234px">
> > </asp:DropDownList></td>
> > </tr>
> > <tr>
> > <td colspan="2" rowspan="2" style="height: 66px">
> >
> > <asp:DetailsView ID="dvProvider" runat="server"
> > AutoGenerateRows="False" DataSourceID="sdsPCPPanel"
> > Height="7px" Style="font-weight: normal;
> > font-size: x-small; color: black; font-family: 'Century Gothic'"
> > Width="319px" GridLines="None">
> > <Fields>
> > <asp:BoundField DataField="RPTPeriod"
> > HeaderText="Report Period:"
> > ReadOnly="True"
> > SortExpression="RPTPeriod" />
> > <asp:BoundField DataField="ProvID"
> > HeaderText="PCP Number:" SortExpression="ProvID" />
> > <asp:BoundField DataField="LocName"
> > HeaderText="Primary Location:" SortExpression="LocName" />
> > <asp:BoundField DataField="Specialty"
> > HeaderText="Department Specialty:" SortExpression="Specialty" />
> > </Fields>
> > </asp:DetailsView>
> >
> > '=====================================================
> >
> > Then there are 8 panels just like this one
> >
> > <asp:Panel ID="pnlHCC" runat="server" CssClass="modalPopup"
> > Style="display:
> > none" Height="323px"
> > Width="685px">
> > <table style="width: 697px; height: 138px">
> > <tr>
> > <td style="width: 100px; height: 5px" valign="top">
> >
> > <asp:Button ID="btnClose_HCC" runat="server"
> > Text="Close" />
> > </td>
> > </tr>
> > <tr>
> > <td style="width: 100px; height: 280px" valign="top">
> >
> > <asp:UpdatePanel ID="upHCC" runat="server">
> > <ContentTemplate>
> > <asp:GridView ID="gvHCC" runat="server"
> > AllowPaging="True" AllowSorting="True"
> > AutoGenerateColumns="False" BackColor="White"
> > BorderColor="#E7E7FF" BorderStyle="None"
> > BorderWidth="1px" CellPadding="3"
> > DataSourceID="odsHCC" EmptyDataText="No 'HCC Left to refresh' Data Exists
> > for
> > this Provider"
> > GridLines="Horizontal" Width="678px">
> > <FooterStyle BackColor="#B5C7DE"
> > ForeColor="#4A3C8C" />
> > <RowStyle BackColor="#E7E7FF"
> > ForeColor="#4A3C8C" />
> > <Columns>
> > <asp:BoundField DataField="PT_MRN"
> > HeaderText="PT_MRN" SortExpression="PT_MRN" />
> > <asp:BoundField DataField="PT_NAME"
> > HeaderText="PT_NAME" SortExpression="PT_NAME" />
> > <asp:BoundField DataField="HCC Left To
> > Refresh" HeaderText="HCC Left To Refresh"
> > SortExpression="HCC Left To
> > Refresh"
> > />
> > <asp:BoundField DataField="HCC
> > Description" HeaderText="HCC Description" SortExpression="HCC Description"
> > />
> > </Columns>
> > <PagerStyle BackColor="#E7E7FF"
> > ForeColor="#4A3C8C" HorizontalAlign="Right" />
> > <SelectedRowStyle BackColor="#738A9C"
> > Font-Bold="True" ForeColor="#F7F7F7" />
> > <HeaderStyle BackColor="#4A3C8C"
> > Font-Bold="True" ForeColor="#F7F7F7" />
> > <AlternatingRowStyle BackColor="#F7F7F7" />
> > </asp:GridView>
> > <asp:ObjectDataSource ID="odsHCC"
> > runat="server"
> > OldValuesParameterFormatString="original_{0}"
> > SelectMethod="PercentRefresh"
> > TypeName="dsListsTableAdapters.tbl_lst_HCCTableAdapter">
> > <SelectParameters>