2017-02-10 136 views
0

設置'foreign_sortby'=>'datum';這個字段現在在我的編輯蒙版中缺失。有人知道爲什麼嗎?TYPO3(7.6.14)Extbase TCA:設置完後的掩碼字段丟失

TCA tx_veranstaltungen_domain_model_terminblock(1個terminblock可以有多個termine)

'termine' => array(
     'exclude' => 1, 
     'label' => 'LLL:EXT:veranstaltungen/Resources/Private/Language/locallang_db.xlf:tx_veranstaltungen_domain_model_terminblock.termine', 
     'config' => array(
      'type' => 'inline', 
      'foreign_table' => 'tx_veranstaltungen_domain_model_termin', 
      'foreign_field' => 'terminblock', 
      'foreign_sortby' => 'datum', 
      'maxitems' => 9999, 
      'appearance' => array(
       'collapseAll' => 0, 
       'levelLinksPosition' => 'top', 
       'showSynchronizationLink' => 1, 
       'showPossibleLocalizationRecords' => 1, 
       'useSortable' => 1, 
       'showAllLocalizationLink' => 1 
      ), 
     ), 

    ), 

回答

0

好吧,我發現了什麼問題,閱讀Bug report

後,您應該foreign_default_sortby改用foreign_sortby,因爲IRRE隱藏您用於排序的字段。事實上,危險,該字段可能會被「排序值」覆蓋。所以我想知道爲什麼我所有的字段(類型日期(時間戳))的值爲01.01.1970 ...因爲字段值更改爲1,2,...

我希望這可以幫助別人,之前他們破壞他們的數據。 :)

(我使用Typo3 7.6.14)