I have encountered an issue with IE. Firefox is fine. I execute a number of steps from within a function called by addOnLoad(). These steps build much of the DOM (95%) and set CSS classes on many of the elements created. What I find with IE is that the CSS styles are not applied to the DOM objects created from within the function. I know that the CSS file is being loaded because styles are applied to existing elements on the page. I've included a stripped down version of the JSP that has the same problem with hte only class applied. Would appreciate any help. Thanks.
IE
IE returning an error from xhr post when content returned contains a form tag
I am trying to do an xhrPost to a processing page that will return html and be handled as text when it is returned. In FF this works correctly and in safari on a Mac. However IE 6 and 7 both return the error handler as soon as I include a form tag in the html that is being returned.
function callFinalist() {
addressInfo = dojo.xhrPost ({
// Location of the HTML content we want to grab
url: '/plain_content/ietest.cfm',
form: dojo.byId("form_id"),
handleAs: "text",
timeout: 10000,
- Login or register to post comments
- Read more
- Subscribe post
dojo and deployJava.js IE problems
Hi,
When I use deployJava.js (http://java.com/js/deployJava.js),http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html with dojo, doesnt" doesn't work on IE. I get a java.lang.NoSuch..Exception dojoType . To repoduce it, includes in any dojo example:
var attributes = {codebase:'http://java.sun.com/products/plugin/1.5.0/demos/jfc/Java2D',
code:'java2d.Java2DemoApplet.class',
archive:'Java2Demo.jar',
Button doesn't display an icon in IE but it does in FF3. Why ?
I have this line in my code:
It works in FF3 when i click on the button but it doesnt work on IE6. Does anybody knows why ?
I'm using release 1.1.1
Thanks
- Login or register to post comments
- Unsubscribe post
How to get cross browser window.innerHeight value?
Is there a way to get the inner height of a browser window?
Firefox use window.innerHeight but IE doesn't.
Abusing dojo.io.iframe for fun and profit
Hello,
I have the following problem: I'm trying to automate submission of forms via a hidden iframe, so I thought the dojo.io.iframe.* set of functions is just right for me. But I run into practical problems when trying to do this. In fact, my implementation works just fine in Safari and Firefox, but fails silently in IE7... I have been able to narrow this down to the following test case:
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>dojo.xhrGet error in IE7
I have a 'save' feature to save the current diagram in the drawing canvas to a file. Here's the code:
// save the current diagram to a svg file or text file.
save= function(){
dojo.xhrGet({
url: 'save.jsp',
preventCache: true,
load: saveCallback,
error: saveError,
content: {name: dojo.byId('output').value }
});
};
It works fine in FF, but I get the error(using Visual Web Developer 2005 as IE debugger) in IE7:
Microsoft JScript runtime error: Object doesn't support this property or method.
IE security warning popup
I am using dojo0.4.3 menu & toolbar. The application is using ssl, https. The problem is with the IE security warning that's quite annoying. When the page is loaded in a fresh new IE window or tab (IE7), no security pop-up. If the user use an existing window, type into the address/or redirect, it always pop up the security warning about the mixed content. Is there anybody have the similar issue? Thanks in advance for any clues and help.
Regards,
- Login or register to post comments
- Subscribe post
Grid programmatically created IE problem (FF, Opera OK)
Hi,
I am creating a grid programmatically, it appears correctly in Firefox 2 and Opera 9.5, but I get this error in IE7: "Object doesn't support this property or method". This is the code:
// a grid view for the dimensions
var dimensionView = {
cells: [[
{name: 'Id', width: "8em", field: "id"},
{name: 'Name', width: "8em", field: "name"},
{name: 'Version', width: "7em", field: "version"},
{name: 'Agency Id', width: "7em", field: "agencyId"},
{name: 'Final', width: "7em", field: "isFinal"}
]]
};
dimensionLayout = [ dimensionView ];
- Login or register to post comments
- Read more
- Subscribe post
