up vote 0 down vote favorite
share [g+] share [fb]

I have a fairly straight forward screen that contains two modal popups. The first confirms a delete type operation and the other allows you to edit form details.

As soon as you open either for the popups they appear like they should but do not go away. At the bottom of the page they are rendered by asp.net with the exact same markup.

I am not sure why this happens. Any help would be appreciated

link|improve this question

It seems that removing one of them makes it work. This will not work for my page so I still need to find a solution. – smaclell Aug 17 '09 at 17:12
feedback

1 Answer

up vote 0 down vote accepted

I found a potential work around that should be okay. The extra set of modal popups were rendered outside the form and so using CSS it was very easy to hide the unwanted elements. This is not ideal but it worked well enough.

Example:

form #modal { display: block; }
#modal { display: none; }

EDIT: Follow up

We have not seen this problem on all pages that have multiple modals which makes me think it is some other factor. Since then we have upgraded to .NET 3.5 and this may not be an issue using the latest versions of the toolkit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.