Dojo 1.7.2 is now available for download. It will be available on CDNs shortly. The list of issues fixed in Dojo 1.7.2 is also available. Notable in this release are fixes for the loader & build system, official support for Firefox 10 ESR, and support for creating builds using Node 0.6. Share and enjoy!
This blog might be a good place to add the announcement for Dylan’s docathons.
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;
};
I still not find any reference from dojo toolkit in the markus falk comparison chart. Is thre any special reason why you didn’t participate in this comparison? You can apply in the following link:
http://www.markus-falk.com/mobile-frameworks-comparison-chart/participate.html
Regards
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
Sorry.Is it support Chrome18+ or Firefox11??
Yes, it should.
Goody, the Dojox.mobile.app and other dojox mobile files have been converted to AMDn 🙂
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;
}
This blog might be a good place to add the announcement for Dylan’s docathons.