Bug #25587
closedIntellisense is still not working in IE
0%
Description
Autocompletion in t3editor is working fine in FF3 but does not work in IE (tested in IE8 only).
Syntax highlighting works well.
(issue imported from #M15331)
Updated by Guido Fögler over 13 years ago
I think you know the archtecture better, but anyway, here is a short debugging scenario T3 4.5.2 with IE8:
[1] BREAK AT: t3editor.js,130: [required to catch „keyup“]
CODE IS: $(that.outerdiv).fire('t3editor:keyup', {t3editor: that, actualEvent: event});
at this point: event.type is "keyup". [OK]
[2] PROCEED, STEP INSIDE, UNTIL: prototype.js,4054:
at this point:
memo is valid(?), and
memo.actualEvent.keyCode is valid (none-zero) (type is "keyup"). [OK]
[3] PROCEED, UNTIL: prototype.js,4073:
CODE IS: element.fireEvent(event.eventType, event);
at this point:
event is initialized (correct?),
event.eventType is "ondataavailable",
event.memo and event.memo.actualEvent is valid,
event.memo.actualEvent.keyCode is valid (none-zero) (type is "keyup"). [OK]
[4] PROCEED, STEP INSIDE: prototype.js,3961:
at this point:
event and event.memo.actualEvent are invalid (!?),
event.eventType is "ondataavailable", and
event.memo.actualEvent.type is "dataavailable",
event.memo.actualEvent.keyCode is 0. [WRONG?]
More steps are involved, not shown here, but with [4]:
„event.memo.actualEvent“ seems to be intentionally consumed or mistakenly overwritten during event propagation. The dot „.“ (keyCode 190) is displayed, but gone lost, so no code completion takes place.
What's going on?
Updated by Michael Stucki almost 11 years ago
- Project changed from 75 to TYPO3 Core
- Target version deleted (
0)
Updated by Mathias Schreiber almost 10 years ago
- Description updated (diff)
- Target version set to 7.5
- TYPO3 Version set to 4.5
- Is Regression set to No
Updated by Susanne Moog over 9 years ago
It's not working on current master either (in IE11) just getting a white page with a cursor and typing stuff works but is not visible (text color white on white background).
Updated by Benni Mack about 9 years ago
- Target version changed from 7.5 to 7 LTS
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed