Problem: After a postback, a webdialogwindow will no longer appear as modal if it's in an updatepanel.
I've read numerous forum posts about this problem. A few posts suggest workarounds, but none of them seem to work for me. Other posts say that hotfixes will correct the problem. I'm using the most current version of the Infragistics asp.net controls along with the most current hotfix. The problem is still there.
Is there an ETA on when this problem will actually be resolved with this control?
HI,
Let me log this issue with Developer Support
This issue was resolved in build 8.2.2014 and is working in 8.3.1009.
Hi,
Thank you for a report. If there are few lines of codes, then it would be nice if you paste them in a post. If it is more than few lines and sample is simple, then you may attach aspx file (use Options tab). Othewise, in order to reproduce and fix a bug, a report with a sample should be submitted: http://es.infragistics.com/support/ask-for-help.aspx
I tried following and modal state was working after a postback.
<asp:TextBox ID="TextBox1" runat="server" Text="outside dialog"></asp:TextBox><asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <ig:WebDialogWindow ID="WebDialogWindow1" runat="server" Modal="true" Width="200px" Height="200px"> <ContentPane> <Template><asp:Button ID="Button1" runat="server" Text="Button" /></Template> </ContentPane> </ig:WebDialogWindow> </ContentTemplate></asp:UpdatePanel>