Hi,

hab eben was seltsames entdeckt

Ich verwende die hofff Erweiterung in einem Formular für 2 Datumseingabefelder.
Daten des Formulars werden in eigener DB Tabelle gespeichert und später im Frontend ausgegeben.

Beim ersten Datum muss ich mit parseDate das Datum umwandeln, beim zweiten gehts auch ohne parseDate.

Formualreinstellungen sind komplett gleich, weil Kopie
dca sieht so aus, also auch kein Unterschied
PHP-Code:
        'eventdatum'  => array
        (
            
'label'     => &$GLOBALS['TL_LANG']['tl_kv']['eventdatum'],
            
'inputType' => 'text',
            
'exclude'   => true,
            
'sorting'   => true,
             
'search'    => true,
            
'eval'      => array(                          
            
'tl_class'  => 'w50'
                ),
            
'sql'       => "varchar(10) NOT NULL default ''"
        
),
        
        
        
'datum'  => array
        (
            
'label'     => &$GLOBALS['TL_LANG']['tl_kv']['datum'],
            
'inputType' => 'text',
            
'exclude'   => true,
            
'sorting'   => true,
             
'search'    => true,
            
'eval'      => array(            
            
'tl_class'  => 'w50'
                ),
            
'sql'       => "varchar(10) NOT NULL default ''"
        
), 
Datumsformat im Formular: d.m.Y
eventdatum kommt als unix timestamp in die DB
datum als text

Weiß jemand warum das so sein könnte ?