Actions
Bug #96009
closedinputType=inputLink not working anymore in IRRE
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2021-11-17
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
Since TYPO3 v11.5.3 the link selection modal does not work anymore for a field in IRRE with type="input" and inputType="inputLink".
- When clicking on the link button, the modal is opened with activated overlay, so nothing can be done. Only a reload of the backend helps then.
- A click on the "Toggle link explanation" button does nothing.
In both cases no JavaScript error occurs in the console. With TYPO3 v11.5.2 everything worked as expected.
My TCA:
'link' => [
'exclude' => true,
'label' => 'Link',
'config' => [
'type' => 'input',
'renderType' => 'inputLink',
'size' => 50,
'max' => 1024,
'eval' => 'trim,required',
'fieldControl' => [
'linkPopup' => [
'options' => [
'title' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:header_link_formlabel',
'blindLinkOptions' => 'file,folder,telephone,mail',
],
],
],
'softref' => 'typolink',
],
],
Files
Actions