Actually, my app manages data/content in form of modules and each module has its own GWT module to help it add/update data. A module may or may not load depending on request, so, corresponding GWT module may or may not load. I don't want to put all the GWT modules in a single .nocach.js because I am not managing whole DOM instead just a piece of it and I cannot stick with single .html. Secondly, It will break the modularity of code, every time I add or remove a module, whole GWT code will be needed to recompiled. Thirdly, it will load lots of redundant (GWT) modules which will slow down my app if more modules in future. I hope, I made myself clear.
I little bit modified my code, making it less history dependent. And, I guess (didn't tested), it works fine if I use (import) *History* with only one module (tell me if I am wrong). So, I can use history with my main module and keep other small/helper modules away from it. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
