In what way or pattern a Controller and View be wrapped in a
GWT.runAsync so that only controllers and views needed are loaded?
I just need to get some ideas on how I will implement this.
In my case, I have a home-grown MVC. My application parse the Url
fragment and then show() the appropriate view. In which the parameter of
the show() function is a key String that will then be used to get the
views that are stored in a HashMap.
Everything, the Controllers, Models and Views are instantiated during
onModuleLoad()
Any ideas?
That's a nice pattern. I did applied this approach and works. However,
my problem is not solved yet, because the GWT-Recaptcha is still causing
request to a external site even if I have used that approach.
I am yet to understand how to fix this thing.