Opened 14 years ago
Closed 14 years ago
#6085 closed defect (fixed)
/dojox/grid/tests/test_edit.html doesn't work with IE6.0 SP2
Reported by: | guest | Owned by: | Bryan Forbes |
---|---|---|---|
Priority: | high | Milestone: | 1.2 |
Component: | DojoX Grid | Version: | 1.0 |
Keywords: | grid select ie6 | Cc: | |
Blocked By: | Blocking: |
Description (last modified by )
The editors : dojox.grid.editors.Select doesn't work, I've to click 3-4 times in the cell to see the select options. The 3 first times, the select options are displayed and hidden immediatly after.
This work fine on FF and IE 7.0
Same behaviour on 1.0.0, 1.0.1 and 1.0.2
Ektor.
Change History (4)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Milestone: | → 1.2 |
---|
comment:3 Changed 14 years ago by
Owner: | changed from sorvell to Bryan Forbes |
---|
comment:4 Changed 14 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | new → closed |
This has been fixed in 1.2.
Note: See
TracTickets for help on using
tickets.
The problem can be solved by defining an empty focus() function in dojox.grid.editors.Select :
You can test this by replacing default editor by this one in /dojox/grid/tests/test_edit.html
dojo.declare("mySelectEditor", dojox.grid.editors.Select, {
});
statusCell = { field: 2,
};
Ektor.