Just wondering how the code can be changed to make the label markup validate for $form -> DateField.
Currently it adds <label for="idname"> but this id does not exist within the form which causes validation warnings, and also isn't fully accessible.
I could wrap this date field with a $form -> borderStart to bind the date select boxes together logically, but the form still needs the label for the individual select boxes e.g.<label for="idname_day">Day: </label>. I would could hide these using css if required.
Any thoughts on this?