Ticket #6085 (closed defect: fixed)

Opened 9 months ago

Last modified 3 months ago

/dojox/grid/tests/test_edit.html doesn't work with IE6.0 SP2

Reported by: guest Owned by: BryanForbes
Priority: high Milestone: 1.2
Component: DojoX Grid Version: 1.0
Severity: major Keywords: grid select ie6
Cc:

Description (last modified by BryanForbes) (diff)

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

Changed 9 months ago by guest

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, {

focus: function(inRowIndex, inNode){ }

});

statusCell = { field: 2,

name: 'Status', styles: 'text-align: center;', editor: mySelectEditor, options: [ "new", "read", "replied" ]

};

Ektor.

Changed 8 months ago by bill

  • milestone set to 1.2

Changed 3 months ago by BryanForbes

  • owner changed from sorvell to BryanForbes

Changed 3 months ago by BryanForbes

  • status changed from new to closed
  • resolution set to fixed
  • description modified (diff)

This has been fixed in 1.2.

Note: See TracTickets for help on using tickets.