I'm deveopping my own Typo3 extension and it's not as easy as expected :) When i create an object in the backend it's working :
But I can't find a way to display the following commands :
- move up
- move down
- enable/disabled
Here is what I tried to show the "enable/disable" icon :
$TCA['tx_productsfaq_domain_model_scenario'] = array (
'ctrl' => array (
'enablecolumns' => [
'disabled' => 'hidden'
]
)
);
.. with no success. In my database the model has a "hidden" column (tinyint). Maybe I forgot something ? All other properties in my TCA work fine.
