For display table content in tab of custom extension.
First you have to set “‘dividers2tabs’ => true” in exe_table.php file.
'dividers2tabs' => true,
then after you have to modify tca.php file.
below code is original code of Tca file
'types' => array ( '0' => array('showitem' => 'hidden;;1;;1-1-1, title;;;;2-2-2, images;;;;3-3-3, logo, small_image, address, place, types ') ),
For set tab you have to add “–div–;Tab1,” before field name.
“Tab1” is stand for title of the tab. Below code is modified code
'types' => array ( '0' => array('showitem' => '--div--;Tab1,hidden;;1;;1-1-1, title;;;;2-2-2, --div--;Tab2,images;;;;3-3-3, --div--;Tab3,logo, small_image,--div--;Tab4, address, place, --div--;Tab5,types ') ),
It will look like below image
I hope it will help you.. Good luck 🙂
If you have any queries, please do not hesitate to contact me at Jainish Senjaliya