Hi,
I use webdialog as a wizard. The wizard requires heavily server-side operation. Therefore, i need to do asynchronous postback. However, if i do so, the modality of the webdialog is lost. The background shadow disappears, the webdialog comes back its initial position and the modality behavior is lost. Here is my setup roughly:
<UpdatePanel>
<WebDialogWindow>
<ContentPane>
<Template>
<asp:Button ID="Button1" OnClick="Button1_Click">
</Template>
</ContentPane>
</WebDialogWindow>
</UpdatePanel>
When I click Button1, the server side operation is done but the modality of the webdialog is lost. How can i handle this problem?
Thanks in advance...
I had the same issue and found that the following link served as an excellent workaround.
https://es.infragistics.com/community/forums/f/ultimate-ui-for-windows-forms/48219/how-to-iterate-all-timeslot-in-timelineview#48219
To get a hot-fix you can go to Products->ASP.NET->Downloads->My Keys and Downloads
https://es.infragistics.com/my-account/keys-and-downloads
Is there a hotfix for this issue? if so, can we have a download link here please?
Persistance of modal state was fixed awhile ago. I think that it should be available in hot fixes. If latest hot fixes do not have that, then it should be next fix for sure.
I decided to switch to the ModalPopupExtender that is part of the AJAX.net toolkit. It is working perfectly with async postbacks and is VERY easy to setup. The only downside is that you are responsible for the look and feel of the dialog (no themes to pick from etc). Another plus is that it is much easier to find help and examples on this control because the community is much more active with alot of posts on it.