Silverstripe 3
DataObject ScheduleEvent managed in ModelAdmin.
I have $db = array('AllDay" => "Boolean");
and $defaults = array("AllDay" => '1');
When I click new scheduleevent button I get the form for inputting the objects data. However even though it setting the value of the checkbox to 1 it does not set checked param to "checked" This means that on a new object create form the checkbox does not look like it is checked when it should.
How are defaults populated in a create form for a dataobject?