Sanjaya Liyanage
Sanjaya Liyanage

Reputation: 4746

How to find whether BrowserFrame has finished loading the web page

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

Answers (1)

Charles Anthony
Charles Anthony

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

Related Questions