3

I introduced my custom field 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');
Sivakumar
  • 1,089
  • 1
  • 13
  • 24

1 Answers1

3
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

maholtz
  • 3,631
  • 1
  • 17
  • 17