Login Register

IE

keypress problems in a TextBox on a dialog, launched from a dialog

I'm trying to launch a dialog from a dialog. On the second dialog with a textbox, I'm having problems with keypresses. Under IE7, I can't type in that textbox at all, while in FF2, I can type, but can not hit back space. This seems to be new in dojo 1.1.x. This was working in previous versions of dojo.

Is there a trac log for this? Is there a current work around?

Here is an example with the issue:


<html>
<head>
<style type="text/css">
/* <![CDATA[ */

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"){

ActiveX plugins hide Dojo DHTML widgets

I'm currently evaluating Javasript toolkits to migrate a fat client application to a webapp. So far dojo seems the best choice, really impressive work!

However we have one particular issue that needs to be sorted out fist: Unfortunately our app relies on various DirectShow ActiveX to display video streams (like Axis Media Control). This restricts us to IE, we have to live with that.

There's a problem with the overlay of DHTML elements over the ActiveX: Dojo DateTextBox flyouts, Dialogs and Popup-Menus are always displayed hidden the ActiveX.

slider ticks and labels not visible in ie when background is set in parent container

I've seen some references to this behavior, but haven't seen much that addresses it directly, so thought I'd post my observations for consideration. Of course if anyone has a fix please let me know.

Serious IE7 bug in test_edit_dijit.html: can't edit ComboBox cells for new rows

I'm trying to use the ComboBox for use with auto-completion in a grid and hit this problem in IE. Luckily, I could reproduce the problem in your test code.

1) run test_edit_dijit.html in an IE 7 browser
2) select "Toggle singleClickEdit"
3) click in the priority cell (it works fine, you can change it values and when you remove all test, possible values show)
4) select "Add Row"
5) click in the priority cell, can't set focus in this cell or in any other cell in the Priority column

Getting dijit.Editor to work on IE from CDN

Hello!

This is my first message here but read many threads in during the dojo leaning process, so I'd like to thank the developers and the community for their work! ;-)

Now the issue: I managed to make the dijit.Editor load properly, however under IE it doesn't fetch the content correctly, and the control has blank content, while on FF it works excellent. I tried many combinations but with the very same effect. However, if I change the dojo loading source from CDN to my host, it works on IE as well.

Plugins & IE 6/7

OK this has to be something stupid on my part but hear me out: I can't get any dijit editor plugins to load in IE (not the "built-in" plugins, but plugins located in dijit/_editor/plugins/MyPlugin.js). This includes default plugins like LinkDialog.js. Now I could have sworn this worked before but I over-wrote my changed plugins with the "factory default" ones and still get the same issue. IE (both 6 and 7) tells me "Could not load dijit._editor.plugins.LinkDialog.js (last tried ../dijit/_editor/plugins/LinkDialog.js)".

IE grid focus problem

When I use grid in editing mode and change row number with dblClick or with tab button cell always loose focus with IE. Focus is placed somewhere on the top of the page. There is no problem with FF.
Still too much people use IE and I think that should be working with it as well.

I searched over the forum and didn't find any fix for it. Does it exists? And I tried with many different nightly builds.

Appreciate your help,
David

dojo 1.0 IE too slow?

Has anyone had any problems with IE being too slow? I am having a problem with running functions right after it was created. dojo.addOnLoad seems to help but I don't want to use that every time.

Accordion rendering issues in IE

I am using the accordion within a layout container and there are several rendering issues that I see in IE6 & IE7. I saw many issues at 1.0.2, a couple of which seemed to have been fixed at 1.1.0rc2, but the accordion still has issues. I put together a sample test case by just copying code from the Dojo book.

Syndicate content