@zoglo
Danke für deine Rückmeldung
Ich würde dir aber empfehlen, dass du das Datumsformat in deinen Seiteneinstellungen einstellst
Das habe ich als Zwischenlösung erstmal so gemacht.
System-Einstellungen: Datumsformat d.m.Y
DCA
PHP-Code:
'additionalevent' => array
(
'inputType' => 'multiColumnWizard',
'save_callback' => array
(
array(AkademieEventsListener::class, 'assignAdditionalEventKeys')
),
'eval' => [
'dragAndDrop' => false,
'columnFields' => [
'additionaleventdate' => [
'label' => &$GLOBALS['TL_LANG']['tl_akademie_events']['additionaleventdate'],
'inputType' => 'text',
'eval' => array('rgxp' => 'date', 'doNotCopy'=>true, 'datepicker' => true, 'tl_class'=>'wizard', 'wrapper_style' => 'width:40%', 'style' => 'width:90%',)
],
'additionaleventtitle' => [
'label' => &$GLOBALS['TL_LANG']['tl_akademie_events']['additionaleventtitle'],
'inputType' => 'text',
'eval' => array('wrapper_style' => 'width:40%', 'style' => 'width:100%')
],
'additionaleventkey' => [
'label' => &$GLOBALS['TL_LANG']['tl_akademie_events']['additionaleventkey'],
'inputType' => 'text',
'eval' => array('doNotCopy'=>true, 'readonly'=>true, 'wrapper_style' => 'width:20%', 'style' => 'width:100%',)
],
],
],
'sql' => "blob NULL"
),
Gruß