vote up 0 vote down star

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

flag

80% accept rate
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 at 17:12

1 Answer

vote up 0 vote down

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; }
link|flag

Your Answer

Get an OpenID
or

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