I have the following code to close the GWT window, but it does not work, could you tell me what is wrong or how to close the GWT window ?. Thank you in advance:
public native void closeBrowser() ; public void onModuleLoad() { Button cerrar = new Button("Cerrar"); cerrar.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { Window.alert("Voy a cerrar"); closeBrowser(); } }); RootPanel.get().add(cerrar); }
source share