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 [email protected]::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 <[email protected]> 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 <[email protected]> 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 [email protected].
> To unsubscribe from this group, send email to 
> [email protected].
> 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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to