Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a function Load() in a js file which I added to the GWT module.

I am trying to call it using

private static native void load() /*-{
   $doc.Load();
}-*/;

but it gives me error like

Error(s) occurred! (TypeError): $doc.Load is not a function fileName: http://localhost:8888/myapp/888C05FB242806B071A932498F6B5AD9.cache.html lineNumber: 1224

I even tried with $wnd.Load()

What the proper way of calling it?

share|improve this question
What do you mean by "I added to the GWT module"? You can just include the js file in your host page via a <script> tag and then the $wnd.Load() reference should work. – Igor Klimer Apr 6 '10 at 22:16

1 Answer

up vote 0 down vote accepted

Igor is correct. Consider the following snippet from the host HTML file:

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" />
    <script language="JavaScript">
    function dostuff() {
        alert("Stuff is being done.");
    }
    </script>

    <!--                                                               -->
    <!-- Consider inlining CSS to reduce the number of requested files -->
    <!--                                                               -->
    <link type="text/css" rel="stylesheet" href="GxtSandbox.css">

And the following snippet from GWT code:

public void onModuleLoad() {
    doGwtStuff();
}

public native void doGwtStuff() /*-{
    $wnd.dostuff();
}-*/;

This alert is shown.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.