Hello everyone,
I have the following misunderstanding,
In my view, I want to create a group of html inputs. To do so, let's
have the following inputs :
echo $form->input('myarray.field1');
echo $form->input('myarray.field2');
echo $form->input('myarray.field3');
In my controller, I can extract each value (or key) as :
foreach ($this->data['Post']['myarray'] as $key => $value) {
//Do whatever you want with the $key/$value
}
It is ok so far, but the problem lies on my model when I want to apply
some validation rules.
Indeed, I tried lots of things such as :
var $validate = array('myarray.field1' => array(
'rule' => array('notEmpty')
)
or
var $validate = array('myarray' => array('field1' =>array(
'rule' => array('notEmpty')
))
But it doesn't work! I can't apply a rule for a precise field within
my array.
I'll be very hapy if someone could highlight the error or give some
pointers!
Cheers
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---