Hi there,
I have an issue setting the datefield to have three seperate dropdowns. I googled and tried a few alternatives... but with no luck...
here is my code snipped....
function getCMSFields()
{
$fields = parent::getCMSFields();
$dateField = new DateField('DateOfBirth');
$dateField->setConfig('dmyfields',true);
$fields->replaceField('DateOfBirth',$dateField);
return $fields;
}
Please slap me if I done something stupid.... also remember, I am a SS noob...