I have a symfony 1.4 application and in a form I am using sfWidgetFormChoice to create multiple checkboxes.
I am able to set the defaults up without a problem, but after saving the object and viewing the edit form, I cannot get the checkboxes to be checked.
The values from the 'checked' checkboxes are imploded and saved into a single field.
For instance:

This is the default setup.
This saves into the database as Full-Time;Hourly.
That works great.
When I am editing this object, the form looks like this:

The setDefault function doesn't work when editing an object (because there is 'data' there, so we don't need the default).
How I'm creating the field object:
$choices = array(
'Full-Time' => 'Full-Time',
'Part-Time' => 'Part-Time',
'Hourly' => 'Hourly',
'Contract' => 'Contract'
);
$this->widgetSchema['emp_type'] = new sfWidgetFormChoice(
array(
'choices' => $choices,
'multiple' => true,
'expanded' => true
),
array()
);
$this->setDefault('emp_type', array('Full-Time', 'Hourly'));
How can I set the appropriate checkboxes to be checked when editing an object?