I know how to call Javascript from GWT.But I have a javascript function that returns a string so, how could I when that function is called send it to GWT.
public static native String stringExample() /*-{
return "String1";
}-*/;
This is how you pass a string to JSNI fn
public static native void alert(String msg) /*-{
$wnd.alert(msg);
}-*/;
Hope this is what you were looking for.
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more