If I have:
// Controller
$this->Model->id = $id;
$this->request->data['Model'] = $this->Model->read();
And then:
// View (input field)
$this->Form->input('some_field'); // THE FORM FIELD WILL BE PRE-POPULATED
But if I want it to be a select box instead:
// View (with select)
$this->Form->select('some_field', $options); // THE SELECT BOX ISN'T PRE-POPULATED
Questions then:
a. Why isn't the select-box pre-populated like the input field is?
b. Do I really have to manually pre-populate like this?
// View (with select)
$this->Form->select('some_field', $options, array('value' => $this->request->data['Model']['some_field'])); // THE SELECT BOX IS PRE-POPULATED
c. Is the above method the most efficient method of pre-populating select boxes which already has a value?