[TYPO3-dev] Customizing IRRE controls in BE: how to hide 'Create New' link?

Loek Hilgersom loek at netcoop.nl
Thu Aug 16 12:03:47 CEST 2012


Great, thanks! I overlooked enabledControls, even when spelling out 
doc_core_tca...

Just another related question: the title of the child records now gets 
cropped at about 30 characters. Is that also adjustable?

Thanks,
Loek


Op 16-08-12 11:14, Stephen Bungert schreef:
> In your tca you can control what buttons appear like this:
>
> 'field_name' => array(
>   'config' => array(
>    'appearance' => array(
>     'enabledControls' => array(
>      'info' => false,
>      'new' => false,
>      'dragdrop' => false,
>      'sort' => false,
>      'hide' => false,
>      'delete' => false,
>     ),
>    ),
>   ),
> ),
>
> Just set the ones you want to see to true
>
>





More information about the TYPO3-dev mailing list