Hi all! Please can anyone help me with my issue - what is the way to know that browserfield2 has finished loading in Blackberry. I need to set some options after loading. Does browserfield2 have some methods to show that?
+1
A:
Here is some code that will get you started.
BrowserField browserField = new BrowserField();
BrowserFieldListener listener = new BrowserFieldListener() {
public void documentLoaded(BrowserField browserField, Document document) throws Exception
{
// the document has loaded, do something ...
}
}
browserField.addListener( listener );
MIchael Grassman
2010-06-01 21:23:43
Thank you!!! It helped!!!
Yuriy
2010-06-18 08:57:42
Helped enough to count towards an answer?
MIchael Grassman
2010-06-19 18:19:43
Yes, it was enough!
Yuriy
2010-07-05 14:45:24
Could you accept the answer?Thanks
MIchael Grassman
2010-07-06 18:08:48
Yes, I do accept the answer.
Yuriy
2010-08-03 07:26:48
You voted up but didn't click accept. You have a 0% accept rate. Thanks,
MIchael Grassman
2010-08-03 20:19:54