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.
0
votes
1answer
35 views
Making GWT JSNI code legal to Checkstyle's TrailingComment metric
Checkstyle's TrailingComment module detects the following as an invalid trailing comment in line 001:
000 private native void doSomething()/*-{
001 .. javascript code here ..
002 }-*/
Which is ...
1
vote
2answers
48 views
GWT JSNI - Call java method of specific object
Consider the following widget. I add two of them to my page. The first one gets the name "widget1", the second one the name "widget2". It just should give out its own name, but called from javascript. ...
1
vote
1answer
34 views
GWT: Hide address bar on mobile devices
I am trying to hide the address bar of my GWT app on mobile devices. From my mobile code I am calling the JSNI function below, but it doesn't work. Any solution you can think of which doesn't involve ...
0
votes
2answers
38 views
IE detects XSS when invoking a method in GWT class using window.opener
I have a GWT application that opens a second browser window. I would like my second window to be able to call a method within the entry point of the first window.
The code sample below works in ...
0
votes
2answers
34 views
Iterating over JSONObject in GWT JSNI
I have a native method which should iterate over the JSONObject. Is there a way to achieve this?
public native void foo(JSONObject c)/*-{
var keys = ...
0
votes
1answer
44 views
JSNI Wrapper object
Here is a common way to access JS methods:
public class JSNIHelper {
public static native void errorNotify(String _title, String _text) /*-{
$wnd.$.pnotify({
...
0
votes
1answer
40 views
JSNI: JsArray<JsArrayNumber> type signature
My JavaScript code gives me an array of arrays of float values:
var serverData = new Array();
var fArray = new Array();
// .. calc mx and my here
fArray.push(mx);
fArray.push(my);
...
1
vote
1answer
93 views
GWT: Native method using JSNI: how to call methods dynamically
I am using GWT and I have created a native method that calls the method cmd_addspace in the class EverlinkedActions and it works fine for now:
private static native String execute(String ...
0
votes
1answer
33 views
How to get the map object from div in GWT
I am trying to get the map type from a map in GWT using JSNI. I want to call map.getCurrentMapType().getName() but I dont know how to get the map object from the div #map_canvas.
Any help would be ...
0
votes
1answer
86 views
GWT: How to extract a content of a javascript function using (JSNI)
I am calling a javascript function from gwt client side using JSNI like follow:
anchor.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
...
0
votes
0answers
63 views
GWT Highcharts calling Javascript using JSNI
I am writing a GWT application and using highcharts. Some features are not implementable in Java but are in javascript. I was given an example of how to implement something I can use however, I do not ...
0
votes
2answers
112 views
GWT - passing Java arrays to Javascript
I am a newcomer to GWT and Javascript.
I am trying to send in a java int[] to my javascript function. I am using a gwt-exporter to handle the processing for me. This is how I have set things up.
...
0
votes
1answer
119 views
Calling GWT Java function from JavaScript
I am a newcomer to GWT and JavaScript.
There are similar question of this type I have tried to follow, but I keep failing.
I have a GWT app, I need to call a Java function from Javascript( on the ...
0
votes
2answers
131 views
Use jquery inside GWT jsni
I am not able to use
$("#"+profileId).offset().top
from inside my gwt jsni function. I tried this
$wnd.$("#"+profileId).offset().top
but this is also not working. I feel i am missing syntax ...
0
votes
1answer
54 views
GWT JSNI method exposure
I have a question regarding using JSNI to expose one of my GWT methods.
I have am trying to expose a method in one of my GWT classes that fires a message to other UI components.
In my application ...
1
vote
1answer
205 views
How to call the corresponding Java methods (for each button) written in a single eventhandler class in GWT?
I want to call different methods (that are in a single GWT eventhandler class) on click of different buttons? It is like this:
Let's say I have 3 buttons in my UI:
Button1
Button2
Button3
And, I ...
1
vote
1answer
110 views
Which is the best method to parse json data at client side?
I am using Jackson to write the data and using gwt-json at client side to parse the data. I am
rendering the data through Dictionary at client side which is slow, so i want to make it speed in ...
1
vote
2answers
88 views
Multiple Browser Window Communication with GWT or GXT
I am building a system that will be used in a corporate environment as the users' primary working environment. We'd like to be able to open a second browser window for certain functionality and have ...
-1
votes
1answer
119 views
Call Java from Javascript JSNI
I am using SmartGWT and I wish to access com.smartgwt.client.Version from JavaScript. In Firefox's Web Console, I have tried:
frames[0].$entry(Lcom_smartgwt_client_Version::getVersion()));
and
...
1
vote
2answers
68 views
GWT Jquery Mobile Refresh list view
I'm adding some ListView items using AJAX in GWT.
If I call using the console in Chrome the following it works fine.
$( "#basket" ).listview( "refresh" );
If I call the following function in ...
0
votes
1answer
144 views
GWT and JSNI - Missing qualifier on instance method
I'm debugging and developing a GWT module through Development Mode. While starting DM I get the following JSNI error: "Missing qualifier on instance method". But, when I compile it, I get no ...
1
vote
1answer
73 views
Benefit of private final native vs private native
I know the meaning of final.
Is there any reason or benefit to use private final native ... instead of private native ... when doing JSNI calls? The reason I ask is because I am not an expert in ...
0
votes
2answers
134 views
How to share an EventBus between two modules
I’m building a large application and I would like to split it in several modules like Core Module for initialization, users management, etc…, Customer Module, Production Module, etc…
I want to split ...
2
votes
1answer
255 views
Get node/element before and after caret position in contenteditable div
I have a contenteditable div in my GWT application and when I press backspace or delete key, I want to get the node before and after caret position and check whether it is a text node or not.
Element ...
5
votes
2answers
99 views
How to Debug JSNI method in GWT?
I have a GWT application containing some JSNI methods. I am getting an exception from inside it. How can i debug the method in IDE or through Browser?
0
votes
3answers
79 views
Pass value from GWT to Javascript via JSNI
I've been trying to pass a value into a Javascript method through JSNI but it keeps on failing.
Is this method valid:
public static native JavaScriptObject getProductById(long pid) /*-{
var ...
1
vote
1answer
201 views
How to pass javascript object to GWT method and parse result
I have this GWT method:
public static native JavaScriptObject getJsValue() /*-{
var res = $wnd.product;
return res;
}-*/;
This is the HTML/JS part:
<script type="text/javascript" ...
0
votes
0answers
66 views
Strange Error when using chartEditor of Google Visualization API
I have a strange error when I want to use the chartEditor of Google Visualization API in my GWT project
I use The JavaScript Native Interface (JSNI) feature of GWT because the visualization wrapper ...
1
vote
3answers
112 views
Detect Word Entered in ContentEditable div
I have a requirement where I need to get the word that was typed in a contenteditable div.
Whenever I type a word and hit space I want to know what word was typed. The word can be typed towards the ...
0
votes
1answer
84 views
Javascript conditional compilation in GWT JSNI
I have this conditional compilation statement which evaluates whether the browser is IE or not:
ie = /*@cc_on!@*/false;
if (ie) {
//do IE specific stuff..
}
I need to use it in GWT within JSNI. ...
0
votes
1answer
123 views
GWT - Calling instance method from external javascript
There is this $entry method that we can use in GWT to allow external javascript to execute java methods.
You can see the explanations in their documentation ...
0
votes
1answer
139 views
Calling Java function from within jQuery slider through JSNI
I have got the main class (say StockWatcher) call a JSNI to define a jQuery UI dialog within the body at page-load. The dialog is called within a JSNI function. On onModuleLoad, I do something like ...
1
vote
0answers
204 views
Zero clipboard is not working in gwt
I have been trying to integrate zero clipboard library with gwt code as follows.
test.html
<script type="text/javascript" language="javascript" src="test/test.nocache.js"></script>
...
0
votes
2answers
208 views
Hook GWT method to Export button menuitem in GWT HighCharts
I'm having trouble hooking a GWT method to the onclick method of a menuitem in the export button on a GWT HighCharts chart.
I've successfully added a custom menu item to the export button, but dont ...
0
votes
2answers
118 views
Call javascript function from gwt. HTMLPane
I've seen a lot of answers to a similar question, but have not found an answer to my question.
There is a html page.
<body>
<div id="text">some text</div>
<script>
...
0
votes
2answers
154 views
Can JSNI Marshal Enums as strings?
I'm trying to use GWT's JSNI to call a Java function through native code. The Java function has an enum in it, and I was curious to know if the enum will marshall in the way I want. I couldn't find ...
0
votes
2answers
106 views
GWT widget with JSNI not attached yet
I created a widget that extends SimplePanel and execute some JSNI in onLoad() method:
public class AceEditor extends SimplePanel implements HasText {
private JavaScriptObject editor;
@Override
...
0
votes
0answers
132 views
ChartWrapper : “Cannot read property 'count' of undefined”
I have a strange problem when I want to work with the ChartWrapper of Google Visualization API, I work with smartgwt and JSNI methods to put the chart into a window, I succeeded with the normal chart ...
0
votes
0answers
33 views
Managing EDGE animate output with GWT
I want to make some animation using adobe edge animate and use the same in my GWT web application project. I succeeded in doing so. But the problem is I would like to control the functions or symbols ...
1
vote
2answers
210 views
Accessing Javascript variable in GWT
I have a variable in Javascript, which toggles between true and false when full-screen mode is switched on and off, respectively. Now I want to access that variable in my GWT code, and do some actions ...
2
votes
2answers
211 views
GWT JSNI Applet with callback
I've spent quite a long time coding and searching this and other sites with no success. I have a GWT app that calls into JSNI which then calls into an Applet to perform some file loading. So I need ...
1
vote
2answers
111 views
Get all select/option lists start by something
In an HTML page i have severals list.
<select name="salut-1358937506000-OK">
<option selected="" value="OK">OK</option>
<option value="OK">NOK</option>
</select>
...
1
vote
2answers
356 views
GWT Javascript Injection and JSNI
How can I use a Javascript library (downloaded from a CDN) inside JSNI code?
For example, I would like to call the javascript Stripe method, from within this JSNI method:
private native void ...
0
votes
2answers
262 views
Converting array of java objects into JavaScript array
I'm writing a GWT application and I need to pass an array of java objects into JavaScript (or convert such array to JS array), I'm very new to JSNI and wondering if it's possible to do.
For example :
...
1
vote
1answer
47 views
How to optionally turn on JSNI part in GWT?
I have some javascript scripts. I also added a button that launches these scripts on main page of my app. In pre-release time I use this button and scripts actively, but I need to remove this button ...
1
vote
1answer
85 views
How to implement a javascript API using JSNI?
I am trying to implement an API (SCORM API) using GWT.
The client code expects an API object with methods like Initialize(), getLastError() and so on...
I tried to implement this api as an Java ...
3
votes
2answers
108 views
How to get and set property in JSNI using GWT?
I have javascript code for get and set property :
set page(val) { some code.. },
get page() { return currentPageNumber; },
Now i want to use these get and set property in JSNI but an error ...
2
votes
1answer
57 views
JavaScript function changes does not appear in JSNI
I am changing JavaScript function in JSNI but eventlistener not call properly. Here is the code:
private native void alert1()/*-{
$doc.addEventListener('DOMContentLoaded', function ...
5
votes
1answer
95 views
Javascript generic clone() method used in GWT application
I was trying to write a generic clone function which should be able to do true deep cloning. I have come across this link, How to Deep clone in javascript and took the function from there.
That code ...
1
vote
2answers
347 views
GWT JSONObject to overlay types (or using JSONObject in shared)
I fill an JSONArray (org.JSON) on my GWT server side, then want to use the object on the client side. When I use a JSONObject (or Array) in my shared package, I get the exception that there was no ...






