Interface HasContentLoadedHandlers
- All Superinterfaces:
HasHandlers
-
Method Summary
Modifier and TypeMethodDescriptionStringMethod fired when content is completely loaded in this htmlFlow.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addContentLoadedHandler
StringMethod fired when content is completely loaded in this htmlFlow. Has no default implementation. Add a notification to fire custom logic when loading completes.Notes:
- A call to
this.setContents()
will cause this notification to be fired when the contents have been set. IfevalScriptBlocks
is true, and the HTML passed intosetContents()
contains any<script src=... >
tags, this callback will be fired asynchronously once the scripts have been loaded from the server and executed, as well as having the widget content updated - When using
contentsURL
, this does not apply to htmlFlows withcontentsType
set to"page"
- Parameters:
handler
- the contentLoaded handler- Returns:
HandlerRegistration
used to remove this handler
- A call to
-