Uses of Interface
com.vaadin.client.ResourceLoader.ResourceLoadListener
Packages that use ResourceLoader.ResourceLoadListener
-
Uses of ResourceLoader.ResourceLoadListener in com.vaadin.client
Methods in com.vaadin.client with parameters of type ResourceLoader.ResourceLoadListenerModifier and TypeMethodDescriptionstatic voidResourceLoader.addOnloadHandler(elemental.dom.Element element, ResourceLoader.ResourceLoadListener listener, ResourceLoader.ResourceLoadEvent event) Adds an onload listener to the given element, which should be a link or a script tag.voidResourceLoader.inlineHtml(String htmlContents, ResourceLoader.ResourceLoadListener resourceLoadListener) Inlines an HTML import and notify a listener when the HTML import is loaded.voidResourceLoader.inlineScript(String scriptContents, ResourceLoader.ResourceLoadListener resourceLoadListener) Inlines a script and notify a listener when the script is loaded.voidResourceLoader.inlineStyleSheet(String styleSheetContents, ResourceLoader.ResourceLoadListener resourceLoadListener) Inlines a stylesheet and notify a listener when the stylesheet is loaded.voidResourceLoader.loadDynamicImport(String expression, ResourceLoader.ResourceLoadListener resourceLoadListener) Loads a dynamic import via the provided JSexpressionand reports the result via theresourceLoadListener.voidResourceLoader.loadHtml(String htmlUrl, ResourceLoader.ResourceLoadListener resourceLoadListener, boolean async) Loads an HTML import and notify a listener when the HTML import is loaded.voidResourceLoader.loadJsModule(String scriptUrl, ResourceLoader.ResourceLoadListener resourceLoadListener, boolean async, boolean defer) Load a script with type module and notify a listener when the script is loaded.voidResourceLoader.loadScript(String scriptUrl, ResourceLoader.ResourceLoadListener resourceLoadListener) Load a script and notify a listener when the script is loaded.voidResourceLoader.loadScript(String scriptUrl, ResourceLoader.ResourceLoadListener resourceLoadListener, boolean async, boolean defer) Load a script and notify a listener when the script is loaded.voidResourceLoader.loadStylesheet(String stylesheetUrl, ResourceLoader.ResourceLoadListener resourceLoadListener) Load a stylesheet and notify a listener when the stylesheet is loaded.