UnlockField not working in CakePHP for array
I have a form that has to handle some elements as part of an array. echo $this->Form->control('config.sys_file_id', ['type' => 'number']); echo $this->Form->control('click_enlarge', ['type' => 'checkbox']); echo $this->Form->control('config.max_width', ['type' => 'number']); echo $this->Form->control('config.max_height', ['type' => 'number']); echo $this->Form->control('config.fixed_width', ['type' => 'number']);…