Home > Archive > PHP Pear > June 2006 > RE: [PEAR] Re: QuickForm this.form.submit(), errors don't show up
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
RE: [PEAR] Re: QuickForm this.form.submit(), errors don't show up
|
|
| Mark Steudel 2006-06-19, 7:07 pm |
| Thanks Mark, but I was actually not doing any client side validation, just
server side, I thought if I left it blank it would default to server
validation...
-----Original Message-----
From: Mark Wiesemann [mailto:wiesemann@php.net]
Sent: Monday, June 19, 2006 1:38 PM
To: pear-general@lists.php.net
Subject: [PEAR] Re: QuickForm this.form.submit(), errors don't show up
Mark Steudel wrote:
> I added a little javascript to my submit button to provide feedback to the
> user when they submit a form, it also disables the submit butt. When I use
> it, the errors in the below form don't show up, is it because I'm using
the
> javascript this.form.submit()? Why would it cause the errors not to show
up?
>
[...]
> // At least one element is required
> $form->addGroupRule('ichkABC', 'Please check at least two boxes',
> 'required', null, 2);
To be a little bit more helpful than the other replies:
After the "2" there is something missing to make the code do that what
you expect ... (RFTM ;-))
http://pear.php.net/manual/en/packa...l-quickform.add
grouprule.php
Regards,
Mark
--
PEAR General Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
| |
| Mark Wiesemann 2006-06-19, 7:07 pm |
| Mark Steudel wrote:
> Thanks Mark, but I was actually not doing any client side validation, just
> server side, I thought if I left it blank it would default to server
> validation...
It does default to server-side validation. But to make the server-side
validation really work, you have to call $form->validate().
Regards,
Mark
|
|
|
|
|