I have GWT Web application and web template that consists of html+css+javascript files.
UiBinder holds html template in HTMLPanel. Problem is that this template is based on many javascript files and I know that GWT have problems with that. So my page is rendered without some javascript features.
What can I do with this? What is correct solution for GWT and external web templates?
I have GWT Web application and web template that consists of html+css+javascript files. UiBinder
Share
The issue is not GWT-specific: you cannot inject
<script>s usinginnerHTML(whichHTMLPanelultimately uses).If you need to dynamically inject scripts in your app, then use
ScriptInjector.