Actions
Bug #82157
closedDatepicker not shown in IE11 and Edge
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Backend JavaScript
Target version:
-
Start date:
2017-08-22
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The Datepicker is not opened in IE11 and Microsoft Edge.
I found out that the javascript in DateTimePicker.js in line 29 should not only testing if opener is null.
The opener should also be testing against undefined because undefined is not null and then the javascript can't access the property "opener.top".
So the line should be:
format: (opener !== null && typeof opener !== 'undefined' && typeof opener.top.TYPO3 !== 'undefined' ? opener.top : top).TYPO3.settings.DateTimePicker.DateFormat
Updated by Wittkiel Gruppe about 7 years ago
René Pflamm wrote:
The Datepicker is not opened in IE11 and Microsoft Edge.
What TYPO3-Version? Should be fixed in 8.7.4. with #81729
Updated by René Pflamm about 7 years ago
TYPO3 version is 8.7.3, you are right, this seems to be fixed, I have checked the source, but with the referenced issue I saw that I didnt see the difference between "!==" and "!="...
So this issue can be closed, sorry.
Actions