Directory

← Back

ReCaptcha

ReCaptcha v2 wrapper component

Author

Contributors

Rating

A wrapper component for ReCaptcha v2.

This addon use javascript connector on the client side, so no need for widgetset build.

For more details see the projects GitHub page.

Sample code

ReCaptcha captcha = new ReCaptcha(
    your_private_key,
    new ReCaptchaOptions() {{//your options
        theme = "light";
        sitekey = your public_key;
    }}
);
layout.addComponent(captcha);
if (!captcha.isValid()) {
    Notification.show("Invalid!", Notification.Type.ERROR_MESSAGE);
    captcha.reload();
} else {
    //do your job
}

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

fixed NotSerializableException by Sven Recknagel

Released
2014-03-13
Maturity
BETA
License
Apache License 2.0

Compatibility

Framework
Vaadin 7.1+
Vaadin 8.0+ in 2.0.3
Vaadin 7.4+ in 1.2.0
Browser
Internet Explorer
Firefox
Opera
Safari
Google Chrome
Internet Explorer
Internet Explorer

Vaadin Add-on Directory

Find open-source widgets, add-ons, themes, and integrations for your Vaadin application. Vaadin Add-on Directory
Online