9 thoughts on “Dojo 1.7.2 released

  1. Hi I am facing a major problem with Dojo. Whenever I try to Dojo on IE 9 I get an error Access is Denied at line 286 in Dojo.js. The line with error is as follows. Here the line xhr.open(‘GET’, fixupUrl(url), false); gives access is denied error. Am I doing something wrong here? None of the demos are working on IE 9 .

    req.getText = function(url, async, onLoad){
    var xhr = getXhr();
    xhr.open(‘GET’, fixupUrl(url), false);
    xhr.send(null);
    if(xhr.status == 200 || (!location.host && !xhr.status)){
    if(onLoad){
    onLoad(xhr.responseText, async);
    }
    }else{
    throw makeError(“xhrFailed”, xhr.status);
    }
    return xhr.responseText;
    };

  2. Thanks for the pointers and your time. However, my IE 9 (9.0.8112.16421 64 bit on 2008 R2 SP1) does not work either on the jsFiddle site (the editor does not even open). I also created a local copy of your example and again no success. It still does not enable typing in the text area but the editor displayed. I also tried disabling security, changing modes .. etc

  3. Goody, the Dojox.mobile.app and other dojox mobile files have been converted to AMDn 🙂

  4. Hi. I think there is an error in the ListInput.css of dojox.form package using Firefox 10.0
    .dojoxListInputItem {
    float:left;
    list-style-type:none;
    margin:1px 5px 1px 1px;
    padding:0;
    }
    .dojoxListInputItem .dijitDialogCloseIcon{
    right:auto !important;
    border:0 !important;
    padding:0!important;
    }
    Must be positioned relatively the inputitem becouse the close button appears at the top when there are more than one line in the ListInput widget and also decrease the top:
    .dojoxListInputItem {
    float:left;
    list-style-type:none;
    margin:1px 5px 1px 1px;
    padding:0;
    position:relative;
    }
    .dojoxListInputItem .dijitDialogCloseIcon{
    right:auto !important;
    border:0 !important;
    padding:0!important;
    top: 2px;
    }

Leave a Reply to Okeowo Aderemi Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.