Package com.google.gwt.core.client
Class ScriptInjector
java.lang.Object
com.google.gwt.core.client.ScriptInjector
Dynamically create a script tag and attach it to the DOM.
Usage with script as local string:
String scriptBody = "var foo = ..."; ScriptInjector.fromString(scriptBody).inject();
Usage with script loaded as URL:
ScriptInjector.fromUrl("http://example.com/foo.js").setCallback( new Callback<Void, Exception>() { public void onFailure(Exception reason) { Window.alert("Script load failed."); } public void onSuccess(Void result) { Window.alert("Script load success."); } }).inject();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Builder for directly injecting a script body into the DOM.static class
Build an injection call for adding a script by URL. -
Field Summary
Modifier and TypeFieldDescriptionstatic final JavaScriptObject
Returns the top level window object. -
Method Summary
Modifier and TypeMethodDescriptionstatic ScriptInjector.FromString
fromString
(String scriptBody) Build an injection call for directly setting the script text in the DOM.static ScriptInjector.FromUrl
Build an injection call for adding a script by URL.
-
Field Details
-
TOP_WINDOW
Returns the top level window object. Use this to inject a script so that global variable references are available under$wnd
in JSNI access.Note that if your GWT app is loaded from a different domain than the top window, you may not be able to add a script element to the top window.
-
-
Method Details
-
fromString
Build an injection call for directly setting the script text in the DOM.- Parameters:
scriptBody
- the script text to be injected and immediately executed.
-
fromUrl
Build an injection call for adding a script by URL.- Parameters:
scriptUrl
- URL of the JavaScript to be injected.
-