I have a gwt app that requires GWT Recaptcha for one of its part. However I don't need it for some parts of my application, and especially on the home "page". Is there a way for it not to load ahead unless the "page" that requires it is the one being opened?
And by "page" I mean a view (as in MVC), in my case I useRecaptchaWidget which is essentially the widget that calls on the RPC for api.recaptcha.net which I can see in the browser when I refresh my application. Clearly its causing some delay in the loading process of views that does not need it.
Is there any way to "lazy" load a widget such that only when the view that instantiates it is called that the widget will be called or even call RPC. Any ideas?