I have a form that represents a RewardModifier table in our database. That RewardModifier hasMany RewardOption.
RewardModifier
hasMany
RewardOption
My fo
I had a similar problem. I found adding (the equivalent of) this to the RewardModifier controller did the trick:
public function beforeFilter(){ $this->Security->unlockedFields = array('RewardOption'); }