Hi, I am not able to post an example at the moment. Does anybody have an idea for solving this problem?
Thank you. On Dec 3, 9:54 am, Filipa Andrade <filipa.andr...@gmail.com> wrote: > Hi Mike, > > sorry but I cant post a link. I will try to make one example of this > problem and post it here. > As additional information I can say that without BlockUI the problem > doesn't happen. I am using it inside an iframe. > I am using jquery 1.3.2. > > Here is the simplified code: > > <div> > <iframe> > <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> > <head> > <title>Blockui example</title> > <meta content="en" http-equiv="Content-Language"/> > <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> > <script src="jquery-1.3.2.min.js" type="text/javascript"></script> > <script src="jquery.blockUI.js" type="text/javascript"></script> > <script type="text/javascript" src="{% staticresource 'js/ > jquery.blockUI.js' %}"></script> > <script type="text/javascript"> > $(document).ready(function() { > $('form.my-form').submit(function() { > $.blockUI({ > message: '<h1>{% trans "Updating status..." %}</ > h1>', > overlayCSS: { backgroundColor: '#fff', opacity: > 0.1 } > }); > }); > }); > </script> > > <body> > <form method="post" action=""> > <div> > <table> > <tbody> > <tr> > <td> > <div> > <select id="id_example" name="example"> > <option selected="selected" value="1">One</option> > <option value="2">Two</option> > <option value="3">Three</option> > </select> > </div> > </td> > </tr> > </tbody> > </table> > > </div> > <p><input type="submit" value="Save"/></p> > > </form> > </body> > </html> > </iframe> > </div> > > On Dec 2, 5:53 pm, Mike Alsup <mal...@gmail.com> wrote: > > > > I am using BlockUI in a pop-up to block it while the new data inserted > > > by the user is updated. > > > > It works pretty good in firefox but IE7 has a strange behaviour: after > > > pushing the submit button the overlay message is displayed and the pop- > > > up is closed (until here everything is fine) but after, the page the > > > user was viewing is continued to be refreshed (I dont know exactly > > > what it is doing but the progress bar is continuously moving forward, > > > I dont see any new requests in the server...) > > > Can you post a link?