java - org.eclipse.swt.Browser opens in read-only mode -
in eclipse-plugin project trying open org.eclipse.swt.browser.browser
, , able open it. open in read-only mode.
now want make editable. how can make editable
platformui.getworkbench().getdisplay().asyncexec(new runnable() { public void run() { shell activeshell = platformui.getworkbench().getactiveworkbenchwindow().getshell(); try { display display = activeshell.getdisplay(); shell shell = new shell(display); browser browser = new browser(shell, swt.none); browser.seturl("htttp://www.sample.com"); } catch (coreexception e) { e.printstacktrace(); } } }
how can solve
@svasa editable - not able type thing on it. opening http://mail.google.com
, want type username , password.
Comments
Post a Comment