How to call another native on button click of a native method? can we call more than 1 native method from single native method on button click
Yes you can do it.
Sample code:
public void onModuleLoad() {
exportSayHello();
Button btn = new Button("Click");
btn.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
buttonClicked("vartika");
}
});
RootPanel.get().add(btn);
}
public static native void exportSayHello() /*-{
$wnd.sayHelloFunction = $entry(@com.gwt.test.client.GWTTestProject::sayHello(Ljava/lang/String;));
}-*/;
public static native void buttonClicked(String value)/*-{
$wnd.sayHelloFunction(value);
}-*/;
public static native void sayHello(String value)/*-{
$wnd.alert("Hello " + value);
}-*/;
Steps to follow:
sayHello() to JavaScript using JSNIbuttonClicked() using the same name sayHelloFunction that is exported to JavaScript.Read more about GWT JSNI.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With