Reputation: 4746
I am using Vaadin BrowserFrame to view a web page . Is there any way I can find out programmatically that BrowserFrame has done with loading stuff ? Any event is fired when it is over ?
Upvotes: 0
Views: 988
Reputation: 3155
Not directly in core Vaadin, no.
A BrowserFrame
component results in an <iframe>
being created. I imagine you could create a component extension to hook into the javascript onload
function for the iframe - shouldn't be too tricky, but will involved some GWT/javascript programming.
Upvotes: 1