Hi Dominik.

Did you try to return false from your javascript function (submitForm) in
case of invalid input?

Regards,
Sergey

On Mon, Jan 11, 2010 at 5:37 PM, dominikgr <domini...@gmail.com> wrote:

> Hallo
>  I have a dynamic form, it is created with from list of data. I use on
> this form jqeury validation, and it works with submit button. But I
> created link that works like submit button. And the problem is that
> validation is not checked.
>  I made link submit buton in this way :
>
>  "submit" -> SHtml.link("", () => actionConfirm(), getSearchLink,
> ("onclick", "submitForm()")),
>
> I put the validation js code into js
>      function submitForm() {
>                if($('#checkoutForm').valid()){
>                        document.getElementById('checkoutForm').submit();
>                }
>            }
>
> when result of $('#checkoutForm').valid() is false i want to stop and
> don't call actionConfirm() from SHthml.link object.
> Anywone know solution ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Lift" group.
> To post to this group, send email to lift...@googlegroups.com.
> To unsubscribe from this group, send email to
> liftweb+unsubscr...@googlegroups.com<liftweb%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/liftweb?hl=en.
>
>
>
>
--
You received this message because you are subscribed to the Google Groups "Lift" group.
To post to this group, send email to lift...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.

Reply via email to