I have two associated tables (customers hasmany commands) and this is my form:
<?php echo $this->Form->create('Customer');?>
echo $this->Form->input('Client.name', array('disabled' => true,'value' => 'francis'));
echo $this->Form->input('Command.0.the_date');
echo $this->Form->end(__('save'));?>
and this is my function:
public function add() {
if (!empty($this->request->data)) {
unset($this->Customer->Command->validate['customers_id']);
$this->Customer->saveAssociated($this->request->data);
}
}
But when i process to save data, nothing happens! Why? Thanks!