The UpdateProgress does not show when I’m using the combination of a ListView with Modalpopupextender and Confirmbuttonextender.
I want the UpdateProgress to show when I’m clicking the OKcontrolid button. And this is working fine:
<asp:Button ID="Button1" runat="server" Text="Button" /> <asp:modalpopupextender id="Modalpopupextender1" runat="server" cancelcontrolid="ButtonDeleteCancel" okcontrolid="ButtonDeleleOkay" targetcontrolid="Button1" popupcontrolid="DivDeleteConfirmation" backgroundcssclass="ModalPopupBG" /> <asp:confirmbuttonextender id="Confirmbuttonextender1" runat="server" targetcontrolid="Button1" enabled="True" displaymodalpopupid="Modalpopupextender1" />
The page does it’s ClientSide magic with showing the PopUp, and when I click the OK button, the UpdateProgress starts fine.
As soon as I put it in a ListView ItemTemplate it does not work. The PopUp shows, but when I click on the OK button, the UpdateProgress does not show.
<asp:ListView runat="server" id="gwUnitInfo" GroupItemCount="1" DataSourceID="sqlUserRoles"> <LayoutTemplate> <table class="gridview_TemplateComputer"> <tr ID="groupPlaceholder" runat="server"></tr> </table> </LayoutTemplate> <GroupTemplate> <tr id="productRow"> <td ID="itemPlaceholder" runat="server"></td> </tr> </GroupTemplate> <itemtemplate> <td class="cssItemLabel"> <asp:Button ID="Button1" runat="server" Text="Button" /> <asp:modalpopupextender id="Modalpopupextender1" runat="server" cancelcontrolid="ButtonDeleteCancel" okcontrolid="ButtonDeleleOkay" targetcontrolid="Button1" popupcontrolid="DivDeleteConfirmation" backgroundcssclass="ModalPopupBG" /> <asp:confirmbuttonextender id="Confirmbuttonextender1" runat="server" targetcontrolid="Button1" enabled="True" displaymodalpopupid="Modalpopupextender1" /> </td> </itemtemplate> </asp:ListView>
Is there anyone who has seen the same thing? Is it a bug? and most important is there a whay I can solve this?
Thx for any reply
Lars
Hi,
This is an old post but I’m having a similar problem, so if you or anybody can provide some explanation or help I would appreciate.
I’m using a ListView and UpdateProgress works fine but if I define QueryStringField property in DataPager the updateProgress stops showing?! I wonder if it is a bug or if it get’s disabled for any reason.
Thanks.
You can refer this to show ModalPopup as an AJAX Progress Indicator
http://mattberseth.com/blog/2007/07/modalpopup_as_an_ajax_progress.html