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
Actions