Project

General

Profile

Bug #88778

Updated by Markus Klein almost 5 years ago

h2. h3. Setup description 

 Record "Project" is a 1:n relation with Record "Assignment" 

 Project::assignments => TCA type inline of Assignment 

 TCA|ctrl|label of Assignment is the field "category". 

 Assignment::category has this TCA: 

 <pre> 
 'config' => [ 
     'type' => 'select', 
     'renderType' => 'selectTree', 
     'foreign_table' => 'sys_category', 
     'foreign_table_where' => 'AND sys_category.pid IN (###PAGE_TSCONFIG_IDLIST###) AND sys_category.sys_language_uid IN (-1, 0) ORDER BY sys_category.sorting ASC', 
     'items' => [], 
     'minitems' => 1, 
     'maxitems' => 1, 
     'treeConfig' => [ 
         'parentField' => 'parent', 
         'appearance' => [ 
             'expandAll' => true, 
             'showHeader' => true, 
             'maxLevels' => 2, 
             'nonSelectableLevels' => '0,1' 
         ], 
     ] 
 ], 
 </pre> 

 h2. h3. Expected behaviour 

 Opening a record of Project should show the category-title in the header of the IRRE-element. 
 (This is working in TYPO3 v7) 

 h2. h3. Current behaviour 

 Opening a record of Project shows the category-uid in the header of the IRRE-element. 

Back