Feature #17956
closedfields of detail table should be used instead of label of mm table
0%
Description
I want to use a mm relation between a product and a detail table with a mm in between. So this forces that a label field must be available inside of the mm table. However I want to skipt the label field on the mm table and have some fields of the detail table be displayed instead of the label which is 'Kein Titel' at the moment.
'config' => Array (
'type' => 'inline',
'appearance' => Array ('collapseAll' => TRUE, 'newRecordLinkAddTitle' => TRUE, 'useCombination' => TRUE),
'foreign_table' => 'tx_my_product_mm_detail',
'foreign_field' => 'product_uid',
'foreign_sortby' => 'productsort',
'foreign_label' => 'text',
'foreign_selector' => 'detail_uid',
'maxitems' => 10
),
(issue imported from #M7058)
Updated by Franz Holzinger almost 17 years ago
I have found out, that this already works if you use the field names uid_local and uid_foreign for the mm table in between. It would be fine to have other field names for this.
'config' => Array (
'type' => 'inline',
'appearance' => Array ('collapseAll' => TRUE, 'newRecordLinkAddTitle' => TRUE, 'useCombination' => TRUE),
'foreign_table' => 'tx_my_product_mm_detail'',
'foreign_field' => 'uid_local',
'foreign_sortby' => 'productsort',
'foreign_label' => 'uid_foreign',
'foreign_selector' => 'uid_foreign',
'maxitems' => 10
),
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0)
As this report is very old, is the handling in newer TYPO3 CMS Versions (like 6.0/6.1) more like you expect it?
Updated by Alexander Opitz about 11 years ago
- Status changed from Needs Feedback to Closed
No feedback for over 90 days.