I'm pulling my hair out over this.
I created a T3-Extension - backend module - using Extension Builder. Now I want to provide the user with the link-wizard, so she/he can select an internal link from the T3-Tree.
I created a TCA-Entry for this:
'url' => [
'label' => 'Link',
'exclude' => 1,
'config' => [
'type' => 'input',
'size' => '50',
'max' => '256',
'eval' => 'trim',
'renderType' => 'inputLink',
'fieldControl' => [
'linkPopup' => [
'options' => [
'blinkLinkOptions' => 'mail,page,spec,url,folder',
'blindLinkFields' => 'class,params,target,title',
'allowedExtensions' => 'html,php'
],
],
],
'fieldWizard' => [
'localizationStateSelector' => [
'disabled' => false,
]
]
],
],
In the fluid-template (the view) I'm simply using this:
<f:form.textfield property="url" />
According to the docs, the TCA-config should add a button after the input field.
But that's not the case.
Am I doing something wrong or is this simply not working?
I also tried using flux in my templates (which has a link-browser view helper), but when I use <flux:...>
nothing is rendered in the form.
Using Typo3 8.7