[Dojo-interest] dijit.progressbar on dijit.dialog

Tom Elliott mrtom at cantab.net
Thu Jun 17 11:33:49 EDT 2010


Right.

Well, you have a comma (,) in your HTML syntax for the progress bar
that shouldn't be there, although that doesn't seem to make a
difference for me. Perhaps one of the imports above the dijit.Dialog
import is causing problems for IE8 and preventing the right code from
being required?

I've put minimal test cases up at
http://telliott.net/dojoExamples/dojo-progressBarDeclarativeInDialogExample.html
and http://telliott.net/dojoExamples/dojo-progressBarInDialogExample.html
which work in IE8 for me.

Sorry I can't be any more help.

Tom

On 17 June 2010 14:21, mehta.hardik <mehta.hardik.21 at gmail.com> wrote:
>
> Hey Tom,
>
> Thanks for the reply. I am using IE8 and Dojo 1.4. I get the progress but
> the image inside the progressbar is not coming somehow for IE8, it works
> fine for FF. And here is the code of one of my test page. And for this test
> page somehow Dialog is also not displaying but you can ignore that. Thanks
> again.
>
> <html>
> <head>
> <style type="text/css">
> @import "dojoroot/dijit/themes/tundra/tundra.css";
>
> @import "dojoroot/dojo/resources/dojo.css";
>
> @import "styles/stylesNewDesign.css";
>
> @import "styles/common.css";
>
> @import "dojoroot/dojox/form/resources/FileInput.css";
> </style>
> <script type="text/javascript" src="dojoroot/dojo/dojo.js"
> djConfig="parseOnLoad: true"></script>
> <script type="text/javascript">
>        // Load Dojo's code relating to the Button widget
>        dojo.require("dijit.form.Button");
>        dojo.require("dijit.MenuBar");
>        dojo.require("dijit.MenuBarItem");
>        dojo.require("dijit.PopupMenuBarItem");
>        dojo.require("dijit.Menu");
>        dojo.require("dijit.MenuItem");
>        dojo.require("dijit.PopupMenuItem");
>        dojo.require("dijit.layout.LayoutContainer");
>        dojo.require("dijit.layout.ContentPane");
>        dojo.require("dijit.form.TextBox");
>        dojo.require("dijit.form.ValidationTextBox");
>        dojo.require("dijit.form.Select");
>        dojo.require("dojo.date");
>        dojo.require("dojo.date.locale");
>        dojo.require("dojo.data.api.Request");
>        dojo.require("dojo.cookie");
>        dojo.require("dojo._base.connect");
>        dojo.require("dojo.fx");
>        dojo.require("dojox.fx._base");
>        dojo.require("dojo.fx.easing");
>        dojo.require("dijit.form.DropDownButton");
>        dojo.require("dojox.form.FileInput");
>        dojo.require("dojox.fx.text");
>        dojo.require("dojo._base.xhr");
>        dojo.require("dijit.ProgressBar");
>        dojo.require("dijit.Dialog");
>        dojo.require("com.airfacts.DialogWOClose");
>
> </script>
> <script language="javascript">
> dojo.addOnLoad(function(){
>        var d = new dijit.Dialog();
>        d.setContent(dojo.byId('progressBar'));
>        d.show();
>
> });
> </script>
> </head>
> <body>
> Test Page.
> <div dojoType="dijit.ProgressBar" indeterminate="true", layoutAlign= "left"
> style="width:300px;" id="progressBar"></div>
> </body>
> </html>
> --
> View this message in context: http://dojo-toolkit.33424.n3.nabble.com/dijit-progressbar-on-dijit-dialog-tp900487p902659.html
> Sent from the Dojo Toolkit mailing list archive at Nabble.com.
> _______________________________________________
> FAQ: http://dojotoolkit.org/support/faq
> Book: http://docs.dojocampus.org
> Dojo-interest at mail.dojotoolkit.org
> http://mail.dojotoolkit.org/mailman/listinfo/dojo-interest
>



-- 
www.twistyfish.co.uk


More information about the Dojo-interest mailing list