Re: Calling JSNI function or Java function to handle onClick event
Although GWT obfuscates the produced javascript code renaming methods,
classes, etc, it is possible to use a GWT method from javascript if
you export it storing a reference in the window object:
private native void exportMyMethod() /*-{
$wnd.showAlert = function(name) {
return .@com.example.MyClass::showAlert(Ljava/lang/String;) (message);
};
}-*/;
Take a look to this article I wrote time ago:
http://code.google.com/p/gwtchismes/wiki/Tutorial_ExportingGwtLibrariesToJavascript_en
-Manolo
On Wed, Jun 2, 2010 at 10:44 PM, kozura <kozura@gmail.com> wrote:
> Java functions are translated into obfuscated (ie renamed) javascript,
> so will not be available to call from an element. You can create a
> javascript function, perhaps attached to wnd, which could then call a
> java function.
>
> On Jun 2, 1:46 pm, DK <dmanchikalap...@gmail.com> wrote:
>> I have an anchor element with an onClick="showAlert();"
>>
>> in my java file, I have a JSNI function
>>
>> public static native void showAlert() /*-{
>> alert('Hello');
>> }-*/;
>>
>> I never see this alert. In fact, when I look at the browser console, I
>> see that showAlert could not be found. What am I missing here ?
>
> --
> You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home