Tagged Questions
0
votes
1answer
26 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
59 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
29 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
75 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
48 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
92 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
91 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
91 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
41 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
192 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
94 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
77 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
86 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
51 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
98 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
69 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
113 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
216 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
86 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
63 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
134 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
59 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
98 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
75 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
93 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
107 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
175 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
194 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
101 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
130 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
86 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
111 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
30 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
177 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
182 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
288 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
222 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
46 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
74 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
106 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
55 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
89 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
294 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 ...
0
votes
1answer
130 views
Using JSNI to create Labeled Marker cause Object function MarkerLabel_(marker, crossURL, handCursorURL){ …} has no method 'getSharedCross'
I tried to create a Label Marker by using JSNI to call google-maps-utility-library-v3 's markerwithlabel.js . However, I always receive this exception :
...
0
votes
2answers
84 views
Can I put a JavaScript button next to the GWT button?
Is it possible to create a horizontal panel with 2 buttons, one in GWT and one in JavaScript?
For example, I have this object:
HorizontalPanel panelHeader = new HorizontalPanel();
Button ...
2
votes
3answers
337 views
GWT and JSNI add Javascript button into HTML panel
I create a simple Javascript file containing a simple button.
function testfuncion() {
document.write('<input type="button" name="hello" value="hello">');
}
Then I created a HTML panel in ...
0
votes
3answers
123 views
Adding JavaScript panel into GWT panel
I want to add an external JavaScript file that contains a colored panel and one button into a GWT panel. Anyone can help me?
0
votes
1answer
151 views
How do we create a JavaScript object in a native method?
I'm working with the google maps api, I'd like to create an instance of one of their objects:
public static final native void test(double lat, double lng) /*-{
var obj = new ...
0
votes
3answers
149 views
Identify Touch/Gesture Capable Devices using GWT
I would like to know if it is possible to identify whether a device is capable of Touch/Gesture Events or not in GWT?
Devices like iPhone supports Multi-Touch Events to a huge extent. Similarly ...
1
vote
1answer
135 views
ClassCastException when calling JSNI method
I have the following GWT code:
package my.package.name;
public class MyImpl {
public void scan(AsyncCallback<String> callBack) {
this.callBack = callBack;
scanJNSI();
...






