Tagged Questions

JSNI is a means to include raw JavaScript code in a GWT application written in Java. JSNI is the web equivalent of inline assembly code.

learn more… | top users | synonyms

4
votes
1answer
1k views

Does GWT JSNI support callbacks?

I am building a GWT app that uses Web SQL Local Storage ( http://dev.w3.org/html5/webdatabase/ ). The problem is that the Web SQL API uses callback functions as arguments. Is it possible to pass ...
4
votes
2answers
387 views

Making a simple overlay class?

I'd like to make some really simple overlay classes in GWT to wrap some SVG stuff. I'd basically like to get a rectangle drawn, this is how I do it in javascript: var svg = ...
3
votes
1answer
89 views

Something other than an int was returned from JSNI method

I am running a GWT application in hosted mode. Sporadically I get a strange HostedModeException complaining about the type of the JS value returned from JSNI. Sometimes it is during deserialization: ...
3
votes
1answer
160 views

java.lang.reflect.Proxy-like functionality in GWT via JSNI

For some custom client-server-communication code in GWT, I'd like to dynamically implement a Java interface similar to the way it would be done with java.lang.reflect.Proxy. Since GWT doesn't include ...
3
votes
2answers
696 views

GWT JSNI - problem passing Strings

I'm trying to provide some function hooks in my GWT project: private TextBox hello = new TextBox(); private void helloMethod(String from) { hello.setText(from); } private native void publish() /*-{ ...
2
votes
0answers
48 views

How do I wrap the MouseEvent constructor from the EasleJS library in GWT?

I am porting same very handy Canvas and Animation libraries to GWT using the JSNI feature. Being the first library I am wrapping I could use a little assistance with this particular constructor: /** ...
2
votes
2answers
269 views

Synchronous RPC Calls in GWT

(That title alone should cause people to come out of the woodwork to bash me with clubs, but hear me out). I have a use case where I need to return a value from a asynchronous call. (I'm using ...
2
votes
1answer
395 views

GWT: working with JsDate and Java Date

In my overlays I wrap a JavaScript Date object in a JsDate: public final native JsDate getDueDate() /*-{ return this["dueDate"]; }-*/; However when I want to use that date in a widget, say a ...
2
votes
1answer
198 views

How do I pass a function pointer to a javascript function using GWT's JSNI?

I've used the JSNI before but I've never had to pass a function pointer as a parameter using it and I'm not sure how to do this. Any help is appreciated!
2
votes
1answer
456 views

Finding out when a GWT module has loaded

I am exporting a GWT method to native javascript in the following manner: public class FaceBookGalleryEntryPoint implements EntryPoint { @Override public void onModuleLoad() { ...
2
votes
1answer
577 views

GWT JSNI: invoking applet methods?

I have a GWT application that includes an embedded applet. I would like to use JNSI to let GWT buttons push data to that applet, but at the moment I can't even get it to connect. Looking for some ...
2
votes
1answer
597 views

Scrolling to the top of a page in a gwt application

I've got a gwt application and I want to scroll to the top of a page using this method: public static native void scrollTop() /*-{ $wnd.scroll(0, 0); }-*/; The method is called in the ...
2
votes
2answers
933 views

GWT: forward user to a URL

Really simple question: From within GWT I want to forward the user away from my GWT page to a certain URL. What is the best way to do this?
1
vote
1answer
29 views

GWT. How to get html tag list

In Javascript, I can write: var circles = document.all.tags("circle"); and in circles variable I will have a list of circle tags. How can I do this in GWT? I wrote: public final native void ...
1
vote
1answer
92 views

How to call GWT java function from Javascript?

Is it possible to call Java (GWT) methods from Javascript? It is also unclear from documentation. All samples here http://code.google.com/intl/ru/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html ...
1
vote
0answers
40 views

Integrating jVectorMap (JS + Jquery) into GWT application

Hi I try to integrate jVectorMap (JS + Jquery) to GWT. It works well in the Development mode but not on the Webserver. This is the jVectormap code and my GWT code ...
1
vote
1answer
82 views

Getting Java method return value from handwritten JS on GWT

Im trying to read the return value of a Java Method and save it into a JS variable. According to the documentation, this should do the job: Native Java method that returns the value: static public ...
1
vote
1answer
54 views

GoogleWebToolkit, generate JSNI classes from XSD using JAXB or similar tools

I need to generate JavaScriptObject classes in GWT from XSD such as: class SomeClassFromXSD extends JavaScriptObject { protected SomeClassFromXSD() { } public static SomeClassFromXSD create() { ...
1
vote
1answer
99 views

Capture ctr-z(undo) and ctr-y(redo) within GWT application

I have been writing a web application baased on GWT 2.3 and along with it I have written my own undo and redo functions. When the user presses ctr-z or ctr-y the undoes or redoes the last changes. Is ...
1
vote
1answer
69 views

Calling GWT methods from handwritten Javascript

Im building a web application with GWT and I want to give users the ability to extend its functionality by some sort of Javascript API that would interact with the app core written in GWT. Basically, ...
1
vote
0answers
100 views

How to add a JavaScriptObject result to a particular place of the resulting HTML in SmartGWT?

I need to execute Javascript from an external javascript library (which I left in the public folder at the same level than client, server and shared). I need that the output of that JavaScript (which ...
1
vote
2answers
147 views

How to scroll to a div id in GWT

I have a webpage with an iframe in which a gwt application is running. The webpage has a <div id="head">. It is not possible to scroll in the iframe (intended) so the webpage has for example a ...
1
vote
2answers
120 views

Storing Javascript objects in Java

I have a Java object, and in it exists a spatial shape defined by a String of "well-known text". On mouseover of this object in my GWT UI, my code passes this String to Javascript through JSNI, which ...
1
vote
2answers
123 views

Which is the difference between $doc.getElementById(“id”) and document.getElementById(“id”) in JSNI

I'm working in a native function inside a GWT application and I've tried this two methods: document.getElementById("id") returns null but $doc.getElementById() returns a valid element. Which is the ...
1
vote
2answers
285 views

GWT: gwt-exporter: passing objects

I've been struggling with passing Java objects from Java through JSNI (gwt-exporter generated) into Java and wonder if anybody can help? I am creating an object in Java ("Person"), passing it to a ...
1
vote
1answer
65 views

My GWT app isn't running a native function off of a JSNI call. Any takers?

I'm attempting to run a native Java function off of a JSNI call in my GWT app. It looks something like this: package foo.client; public class AAA implements EntryPoint, UIupdate { public native ...
1
vote
1answer
565 views

GWT: JSNI Function Call to getElementById() Returns Null

I am trying to use JSNI to display a Google Map within an Application. I have defined the script in my index.html page. Here is the uibinder definition (snipped down to the essentials): ...
1
vote
1answer
601 views

Calling a GWT Java function from an html script tag

I have a GWT project and I would like to add a script tag to the main html file of the GWT project that calls a Java function located in my client code. According to the documentation I should add ...
1
vote
1answer
672 views

How to use Java varargs with the GWT Javascript Native Interface? (aka, “GWT has no printf()”)

I'm trying to quickly learn GWT as part of a new project. I found out that GWT doesn't implement Java's String.format() function, so there's no printf()-like functionality. I knew that some printf() ...
1
vote
1answer
352 views

Creating New Array with Class Object in GWT

I would like to create a new array with a given type from a class object in GWT. What I mean is I would like to emulate the functionality of java.lang.reflect.Array.newInstance(Class<?> ...
1
vote
2answers
274 views

Using phonegap audio api in gwt

I am wanting to use the phonegap audio api in GWT using JSNI.I cannot figure out how to code the methods in JSNI. Wondering if anyone know of any tutorials.They javascript methods are really pretty ...
1
vote
2answers
281 views

Why doesn't JsArrayString implement iterable?

Quick question here -- I just used JsArrayString for the first time, and was surprised that this didn't work: JsArrayString object = ...; for (String s : object) So I just wrote a C-style for loop: ...
1
vote
1answer
174 views

Is there any way to automatically bridge a Javascript library to GWT?

I need to bridge a fairly procedural Javascript library consisting of some .js files containing functions to call from GWT. There's already a nice utility called GWT-Exporter that does exactly the ...
1
vote
1answer
603 views

GWT : print button

I am trying to create a button that prints the current browser window. This is my current code, that uses (or at least it tries to use) JSNI: private Button print = new Button(constants.print(), new ...
1
vote
1answer
79 views

In GWT how to know all the styles applied to a given element (by id or class name)

I have the following problem : in my GWT project there is a "main" css file for the application, inline css in the DOM that come from the application computation and a css file that is bundled in an ...
1
vote
3answers
2k views

Javascript instanceof & typeof in GWT (JSNI)

I've encountered an curious problem while trying to use some objects through JSNI in GWT. Let's say we have javscript file with the function defined: test.js: function test(arg){ var type = ...
1
vote
2answers
538 views

GWT: Best practice for unit testing / mocking JSNI methods?

I have a class which uses JSNI to retrieve JSON data stored in the host page: protected native JsArray<JsonModel> getModels() /*-{ return $wnd.jsonData; }-*/; This method is called, and ...
1
vote
2answers
520 views

jquery ready not waiting for plugins to finish loading

The following gwt jsni method code only "works" when I have firebug open, I presume because its slowing down the page rendering long enough for the external js files to finish loading. What am I ...
1
vote
1answer
2k views

Passing variable name into GWT's JSNI

Using the JavaScript Native Interface of GWT I can perform the following: public native static String getNativeVariableFoo() /*-{ return $wnd.foo; }-*/; Which will return the contents of a ...
1
vote
3answers
2k views

Java Hashmap and Mutlidimensional array type sig in JNSI?

I've got a method JSNI that calls a Java method that take a Hasmap as input. I've tried handler.@com.mypackage::myMethod(Ljava/util/Hashmap;)(myHashMap); ...
0
votes
1answer
30 views

Call GWT Method from Handwritten JavaScript

I'd like to execute some js method from browser console to call gwt code. For ex. showMyWindow(); js: function showMyWindow() { // call gwt code from here MyWindow::showMe() } gwt: class ...
0
votes
1answer
25 views

GWT Linechart options

I need to set different line width to different series in a chart. This can be done using the series option here ...
0
votes
1answer
28 views

JSNI dynamic function reference in GWT

I would like to call arbitrary js function from gwt. Function name would be inside functionname variable. Something like this: private static native String execute(String functionName, ...
0
votes
1answer
27 views

GWT Exporter - How do i create an instance of object at runtime. Object type will be available as a string argument

I am using the following code in GWT client Inside my jsni method I am using the following code, Assume that typeName is String argument typeName = '$wnd.mysample.SampleButton' var sample = new ...
0
votes
1answer
53 views

gwt/jsni- Pass a String from external JS to Java

How can I call from external JS with JSNI? For example: //Some external JS code ... this.onFeatureClick = function(event) { ... var name = "Batman"; ...
0
votes
1answer
58 views

How to run JavaScript function from GWT Java with JSNI?

Can't understand from the manual: how actually to run JS function from Java? For example, I have a function in my html page: <script type="text/javascript" language="javascript"> function ...
0
votes
2answers
38 views

Refering Javascript Constants within GWT code

Is there a way using JSNI and JSOT (javascript overlay types) to map a javascript constants to a custom java-type? Example: I map the Google Map V3 javascript API to GWT and there is the MapTypeId ...
0
votes
0answers
28 views

How to adjust height of richtextbox dynamically based on inner content?

public class AutoResizeBox extends RichTextArea { public AutoResizeBox() { set(getElement()); } public static native void set(Element f) /*-{ console.log(f.tagName) ; ...
0
votes
1answer
117 views

From javascript to java (A GWT story)

So, I'm designing an app in GWT for an embedded web browser (Sketchup). I can control Sketchup by changing the window.location value to "skp::myFunciton@myParams". Sketchup can execute javascript in ...
0
votes
2answers
47 views

How to call java method from javascript method that located within another jsni method

public class A{ private void javaMethod(int a,int b){} private native void init()/*-{ function OnMouseMove(e) { //blow calling doesn't work ...

1 2