• Problem in IE10 as IE9

    By Albert YI 1 decade ago

    Open FormExample have a dojo JS error



    This problem in IE10 as IE8 is fine.



    var 2e=2d.getAttribute("widgetId")





    Domino 8.5.3

    Windows 8 64bit IE10

    • Same issue

      By Clay Martin 1 decade ago

      You can use IE 9 with Document Mode = IE 7 or 8.

      But as soon as you load the page as IE 9 I get the same error.

      SCRIPT5007: Object expected
      dojo.js, line 14 character 12119

      I am running 8.5.3

       

    • This problem had been resolve

      By Albert YI 1 decade ago

      Midifiy swfupload.js getFlashHTML as follow code :



      SWFUpload.prototype.getFlashHTML = function (flashVersion) {

      // Flash Satay object syntax: http://www.alistapart.com/articles/flashsatay

      var classid = "";

      var Sys = {};

      var ua = navigator.userAgent.toLowerCase();

      if (window.ActiveXObject) {

      Sys.ie = ua.match(/msie ([\d.]+)/)[1];  <br/>
      if (Sys.ie &amp;&amp; Sys.ie.substring(0, 1) == &quot;9&quot; || Sys.ie.substring(0, 2) == &quot;10&quot;) {  <br/>
          classid = ' classid = &quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot;';  <br/>
      }  <br/>
      

      }

      return ['<object', classid, ' id="', this.movieName, '" type="application/x-shockwave-flash" data="',

      (this.support.imageResize ? this.settings.flash_url : this.settings.flash9_url), '" width="',

      this.settings.button_width, '" height="', this.settings.button_height, '" class="swfupload">',

                  '&lt;param name=&quot;wmode&quot; value=&quot;', this.settings.button_window_mode, '&quot;/&gt;',  <br/>
                  '&lt;param name=&quot;movie&quot; value=&quot;', (this.support.imageResize ? this.settings.flash_url : <br/>
      

      this.settings.flash9_url), '"/>',

                  '&lt;param name=&quot;quality&quot; value=&quot;high&quot;/&gt;',  <br/>
                  '&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;/&gt;',  <br/>
                  '&lt;param name=&quot;flashvars&quot; value=&quot;' + this.getFlashVars() + '&quot;/&gt;',  <br/>
                  '&lt;/object&gt;'].join(&quot;&quot;);  <br/>
      

      };