Login Register

ie6

Ajax Reliability

So basically I'm implementing dojo into a new chat system I'm working on.

We are trying to support as many people as possible, and I'm trying to figure out if we are approaching this the right way. So if anyone can answer any of my questions that would be great.

1. Can Dojo work with the firefox plugin: NoScript
2. Are the complications with referencing the javascript file on a different domain as the site is servered on (ie: googleapis)
3. Is Dojo as reliable as Iframes, or do developers really still have to deal with that. If so, can dojo also fall back onto iframes?

Dojo Feature Explorer doesn't work in IE6 !!?

Hi,

Am I right in seeing that dojo feature explorer doesn't work properly in IE? The buttons at the top are all screwy in my IE6.

Is this correct for you guys too?

Very surprising that the showcase for a JS library doesn't work on 25% of browsers.

Hopefully, it's something on my end...

http://dojocampus.org/explorer/

dijit.layout.ContentPane and aspx problem

Hi,
I have a problem setting hRef property of a dijit.layout.ContentPane to .aspx target on IE6.
In generall it works fine, but on IE6 (in my case win2k) the pane content shows the text undefined after loading. I have tried to set the static HTML property href and set the href by Javascriptcode using the setHRef function. I see things in context with ASP.NET. Because pane text is "undefined" when I set href to a dynamic .aspx. Setting href to static .htm or .html file will work in IE6. All other browsers are working with .aspx files

IE6 Error Importing Stylesheets

I'm in the process of learning Dojo (I'm using v1.1.1) and ran across a serious problem I can't figure out. Could be me doing something stupid, I suppose, but here's the deal. I've created a test web page to try out various things. The head section starts with the following code:

<style rel="stylesheet" type="text/css">
    @import "dojo-release-1.1.1/dojo/resources/dojo.css";
    @import "dojo-release-1.1.1/dijit/themes/tundra/tundra.css";
    @import "styles.css";
</style>

Menu items are not properly displayed in mail demo using Dojo 1.1.1

On IE 6 and with Dojo 1.1.1, the menu items of the mail demo are
displayed one above next. With IE 7, it is worse: only the first menu
item is shown. At the other hand, the demonstration
http://dojotoolkit.org/demos/email-using-1-0 with Dojo 1.0 looks right
(I mean the menu items displayed side by side).

I'm using
IE 7.0.5730.13
IE 6.0.2900.2180.xpsp_sp2_gdr.070227-2254
FF 3.0.1

Please find below the screen dumps for IE 6, IE 7 and FF 3 (They are hosted by http://www.kadrane.com):

IE6

Declarative Instantiation Problem With IE

This works for FF but I can't get it to work in IE. The my.DialogContent widget is dropped into my.Dialog using my.Dialog.setHref(). It instantiates correctly creating the widget and its components and runs their declarative scripts but doesn't run the top ones I've put in the code block below. Any help would be greatly appreciated. Thanks :)

PS. The init method that is not being overwritten below is invoked in my.DialogContent postCreate

Ignore the fact I took out the < and > brackets below wasn't showing the code block when I left them in

IE6 Error "Object required" in my custom widget

I originally created a custom widget in dojo .4 version. My old widget worked both in FF as well as IE6.

Recently I migrated the widget to Dojo 1.0. I have having trouble gettting my widget to work in IE. It works OK in Firefox.

Here is my template code:

<div dojoAttachPoint="LogTableDomNode"> </div>

Here is the code I have in the fillInTemplate that was included inside the widget. The objective of this code was to replace the above template code with a HTML Table.


fillInTemplate: function() {

SOLVED: Fix for dojo.addOnLoad with IE (Dojo 1.1)

Hello,

I've recently bumped into a dojo.addOnLoad bug with IE6: It can execute the passed function even if document's readystate is currently "loading".

Here's a way to patch dojo.addOnLoad:

    //dojo.addOnLoad patch if IE
    if(dojo.isIE){
        //Saving a copy of the original function.
        var origAddOnLoad=dojo.addOnLoad;
        //Wrapping it.
        dojo.addOnLoad=function(){
            var args=arguments;
            if(document.readyState=="complete"){

Are the 3 default dijit 1.1 themes cross-browser compatible? ie6 doesn't support alpha pngs...

Are the dijit themes included with the default dijit installation (tundra,soria,nihilo) 100% complete and cross-browser compatible? I noticed that soria and nihilo in particular use a lot of pngs, and am wondering how ie6 would handle these two themes. I am running Ubuntu Linux, and am therefore unable to test the themes myself. I need to use a theme which is completely cross-platform, as many Windows users visit my website. Thanks in advance!

storage + xd + IE6 = pain

I've got a very basic cross-domain build of 1.1.0 that mostly works great but errors badly when trying to load dojox.storage in IE6--it throws a "can't load cross-domain resource" exception that I can't fully capture (the debugger refuses to show me anything).

I tried creating a storage layer as suggested by the storage profile...

dependencies = {
layers : [
{
name: "../dojox/storage/storage-browser.js",
layerDependencies: [
],
dependencies: [
"dojox.storage",

Syndicate content