Actions
Bug #101424
closedIn the results list of Indexed_search, no links on the page are clickable, except for those of the Indexed_search pager.
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Indexed Search
Target version:
-
Start date:
2023-07-24
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The JavaScript
"document.addEventListener('click', (evt) => {",
'evt.preventDefault();',
"if (!evt.target.classList.contains('tx-indexedsearch-page-selector')) {",
'return;',
'}',
'var data = evt.target.dataset;',
"document.getElementById(data.prefix + '_pointer').value = data.pointer;",
"document.getElementById(data.prefix + '_freeIndexUid').value = data.freeIndexUid;",
'document.getElementById(data.prefix).submit();',
'});',
which is integrated by the PageBrowsingViewHelper, prevents all links on the page except those of the pager from being clickable.
Updated by Andreas Kienast over 1 year ago
- Status changed from New to Closed
Thank you for your report. This issue was already handled in #101331 and is fixed with the next TYPO3 release.
Kind regards
Andreas
Updated by Andreas Kienast over 1 year ago
- Related to Bug #101331: All links broken once indexed_search renders a pagination added
Actions