I have a select type in phalcon form
$category = new Select('category', Category::findForSelect(), [
'useEmpty' => true,
'emptyText' => 'Select...',
'emptyValue' => ''
]);
It works on new form. When i edit the form with old data the category does not get selected on edit.