I'm trying to set default values of a multiple select field from the controller but it's not working. I'm using "$this->tag->select" in the view with the name "select[]".
From the controller, I'm trying to use "$this->tag->setDefault('select', $default_values_array);" but it's not working because setDefault doesn't accept non scalar values.
How can I make it work?