I have a master page with the WebDialoguewindow on it with windowstate property to hidden.
now from the content page i am triggering the popup window by setting its window state property to normal.
But this does not shows the window on the screen.
I checked i' m getting the WebDialoguewindow control in the content page but still it does not shows up .
the Modal property is set to true and usebodytagasparent is also true.
Hi ashpawan,
If it is possible for your application, then I suggest to move modal WebDialogWindow directly into master page and put it after all controls.If dialog is located in complex container, then modal functionality may fail. Moving to body on client (usebodyasparent) is not 100% guarantee to work and in some cases may trigger side effects or exceptions. If that happens than that is the limit of WebDialogWindow usage.
Hi Viktor
Thanks For your reply,
I solved this problem by setting the page property of the webdialoguewindow to the content pagewhen clicking the button from the content page.I again reset the page property to the master page after the action is completed.