I'm trying to extract parts of a GWT application into many separate dialogs that can be invoked from php.
Existing state: We have a GWT appplication that is deployed to JBoss as a WAR. The app has a single module with a signle entry point. The main JSP sets up the environment and then has some JS that loads the .nocache.js using document.write(); The entry point's onModuleLoad() creates a panel to fill the browser and adds it to the root using RootPanel.get("root").add(); When some event happens (e.g., user presses button) we pop up a DialogBox by instatiating a subclass and calling center() or setVisible()
Desired state: We want a php app with multiple pages, to be able to invoke various DialogBox subclasses.
I think that the php side should use JS function calls that use document.write(); As for the GWT side, the options I see are:
- One module with multiple entry points.
- Multiple modules.
Does anyone have any experience or understanding of what would be the best practice here?