I introduced my custom fie开发者_如何学Cld in Dam modules. it works fine. I want to display my custom field in overview tab(the first tab) when editing the document. Now its appearing in the last tab.
How to do this.
This is my ext_tables.php lines which adds the field into dam module
t3lib_extMgm::addToAllTCAtypes('tx_dam','custom_field;;;;111');
t3lib_extMgm::addToAllTCAtypes(
'tx_dam', // table
'custom_field;;;;111', // your field definition
'', // at which types it should appear (f.e. in table tt_content 'textpic' or 'image')
'after:title', // before: or after: the field in the TCA
);
f.e. see there: http://api.typo3.org/typo3v4/45/html/classt3lib__ext_mgm.html#a61b2e2deb5d29cfb871e905b040dd416
精彩评论