dojo crashes ie6 when using Zend Framework - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:24:26Z http://stackoverflow.com/feeds/question/1063493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1063493/dojo-crashes-ie6-when-using-zend-framework 0 dojo crashes ie6 when using Zend Framework Grant Collins 2009-06-30T12:50:11Z 2009-10-02T04:00:02Z <p>I'm having issues with a application that I am writing that uses Dojo and Zend Framework. The issue only effects Internet Explorer 6, other versions of IE, ff, chrome and safari work fine with no issues.</p> <p>When IE6 lands on the login page it crashes with the send details to microsoft dialog box. The login script uses dojo to provide some validation for the users to ensure that their passwords are formatted correctly etc.</p> <p>I've seen on some forums that addOnLoad() function call in dojo could be the cause and a window.setTimeout() would help. <a href="http://www.dojotoolkit.org/forum/dojo-core-dojo-0-9/dojo-core-support/dom-manipulation-addonload-crashes-ie6" rel="nofollow">http://www.dojotoolkit.org/forum/dojo-core-dojo-0-9/dojo-core-support/dom-manipulation-addonload-crashes-ie6</a></p> <p>The problem I have is how to manipulate the dojo header that we have in the layout.phtml in the application. We currently have in the file this code in the header.</p> <pre><code>&lt;?php $this-&gt;dojo()-&gt;setLocalPath($this-&gt;baseUrl().'/javascript/dojo/dojo.js'); $this-&gt;dojo()-&gt;addStylesheetModule('dijit.themes.tundra'); echo $this-&gt;dojo(); ?&gt; </code></pre> <p>This produces the following in the html.</p> <pre> dojo.require("dijit.form.ValidationTextBox"); dojo.require("dijit.form.Button"); dojo.require("dojo.parser"); dojo.addOnLoad(function() { dojo.forEach(zendDijits, function(info) { var n = dojo.byId(info.id); if (null != n) { dojo.attr(n, dojo.mixin({ id: info.id }, info.params)); } }); dojo.parser.parse(); }); var zendDijits = [{"id":"username","params":{"regExp":"[a-z0-9_\\+-]+(\\.[a-z0-9_\\+-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*\\.([a-z]{2,4})$","invalidMessage":"Please enter a valid email address","trim":"true","required":"true","dojoType":"dijit.form.ValidationTextBox"}},{"id":"password1","params":{"trim":"true","lowercase":"true","regExp":"^.*(?=.{6,})(?=.*\\d)(?=.*[a-zA-Z]).*$","invalidMessage":"Invalid Password. Password must be at least 6 alphanumeric characters","required":"true","dojoType":"dijit.form.ValidationTextBox"}},{"id":"submit","params":{"label":"Login","dojoType":"dijit.form.Button"}}]; </pre> <p>How can I change this to try and add the fixes mentioned in the link, or is there another way to write this without IE6 crashing all the time?? I would prefer to fix this than remove all the client validation, just in case the client is using IE6.</p> <p>thanks...</p> http://stackoverflow.com/questions/1063493/dojo-crashes-ie6-when-using-zend-framework/1080039#1080039 0 Answer by for dojo crashes ie6 when using Zend Framework 2009-07-03T16:24:35Z 2009-07-03T16:24:35Z <p>Can you reduce it down until you find what is crashing IE6? Save off your output as static html, confirm it still crashes IE and start removing code. Take that addOnLoad out altogether - does it still crash? if not, take out the forEach, and so on. Start removing elements from zendDijits array - is there one in particular that causes the trouble? </p> <p>Is this a stock IE6? Any plugins/addons? </p> <p>Your php there should be producing a script element to pull dojo.js. You've got soemthing wierd going on - that Zend code is known to work so we need <em>all</em> the information if you want to solve this. </p>