On Dec 11, 9:14 am, gearvOsh <[EMAIL PROTECTED]> wrote:
> So I understand the Model validation using $validate. I applied snooks
> multiple validations 
> usinghttp://snook.ca/archives/cakephp/multiple_validation_sets_cakephp/,
> all that works perfectly.
>
> I do however dislike it when a field errors, the error message is
> shown after the input. Id rather a list of all errors be shown above
> the form, so what im asking is...
>

Simply use FormHelper::error() to print error messages wherever and
whenever you want:

echo($form->error('Model.field1');
echo($form->error('Model.field2');

(http://api.cakephp.org/class_form_helper.html)

Don't forget to remove the error message from your input fields:

echo($form->input('Model.field1', array('error' => false)));
echo($form->input('Model.field2', array('error' => false)));

Marcus
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to