If you mean dynamically loading code at runtime, I don't *think* this is possible - we have a similar app (written originally against GWT 1.6) we have the notion of a plugin - it's a separate GWT module in it's own project, but is pulled in at compile time... these modules are pulled in using Gin/Guice so adding another plugin is as simple as pulling it in using DI... I didn't write this bit but I think thats how it works.
On Jun 3, 2:06 am, Juan Pablo Gardella <[email protected]> wrote: > +1 to who know a manner to resolve this > > 2011/6/2 Alexey Skor <[email protected]> > > > > > I need a web UI with pages like "Info", "Support", etc. That's easy. > > In addition, I have some "plugins" with their own "editors", which need to > > be shown in the same web UI. > > It's something similar to "Extensions" page shown in Google Chrome: every > > extension has an "Options" link, which can contain any editor the extension > > wants. > > > So, my main application does not know upfront how many "plugins" and > > editors it has. All it knows is how to call the plugin's "showEditor()" > > method. > > (this is how it's currently implemented in my Eclipse-based desktop app, > > which I'm trying to port to web) > > > I'm wondering if GWT is applicable for this kind of applications. So far > > looks that GWT applications are "monolithic" and all pages / panels need to > > be referenced in the common "gwt.xml" file, which means I can't configure > > the distributive to include only "plugin1 and plugin2" or only "plugin 2 and > > plugin 3" - I have to always include everything since it's referenced in the > > common xml file. > > > Any ideas how to use "modularity" with GWT so that UI panels can come from > > some "modules/plugins"? > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google Web Toolkit" group. > > To view this discussion on the web visit > >https://groups.google.com/d/msg/google-web-toolkit/-/cVRCcmdib0s3dlFK. > > 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. -- 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.
