Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. Its goal is to enable productive development of high-performance web applications without requiring the developer to be an expert in browser quirks, XMLHttpRequest, and JavaScript. GWT ...

learn more… | top users | synonyms (2)

1
vote
0answers
14 views

Convert html+css+js to PDF

I want to create something like this (code is here): in pdf format. I'm using google charts and regarding to this forum converting chart to pdf is impossible. I've already tryied iText+XMLWorker, ...
0
votes
2answers
32 views
+50

GWT call Axis2 on Tomcat doesn't work

When i try to call a web service from my server java written with GWT deployed on tomcat 7 i have this error: java.lang.NumberFormatException: For input string: "" at ...
0
votes
0answers
8 views

Integrate GWT app and Command line Java utility using MVC pattern

I have a task to integrate a GWT application and a java command line utility , both are calling same Facade classes ( which have business logic ) Looking around the best possible way to do so , did ...
5
votes
2answers
4k views

Straightforward example for loading data into a Sencha GXT (3.0) ListStore using a GWT RPC call?

Does anyone have or know of an example which demonstrates loading data via a GWT RPC call into a ListStore using Sencha GXT 3.0? I know there are numerous examples of using the ModelData and ...
0
votes
1answer
13 views

GXT - How to refresh grid data by clicking Refresh on PagingToolbar

I created a sample gxt widget that displays list of record from db. When I click the refresh button, I would expect the grid data to reload, well it didn't so I thought I could just add an event ...
0
votes
0answers
12 views

How to properly utilize a CardLayoutPanel

In a GWT application, I have a CardLayoutPanel of which I briefly want the active widget to be an instance of a form widget of my own. I have a button, which adds the widget to the CardLayoutPanel. ...
0
votes
0answers
16 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); ...
0
votes
1answer
17 views

How to prevent empty context menu from showing in GXT

I have a TreePanel which shows different kind of objects hierarchically. Region, City, Location... I want to be able to show different context menu items in different levels. For example: miR for ...
6
votes
3answers
1k views

Problem with running Maven GWT application in Eclipse

I'm trying to create a GWT project through WebAppCreator enabled Maven2. Project creation steps: Create project with WebAppCreator (i'm using gwt-2.3.0) webAppCreator -noant -maven -XnoEclipse ...
0
votes
0answers
31 views

Unresolved GWT error in LibGDX HTML project

I followed the tutorial here but when I go to 'Problems" tab in order to make Quick Fix it says: The type com.google.gwt.core.client.EntryPoint cannot be resolved. It is indirectly referenced ...
2
votes
2answers
684 views

GWT import cannot be resolved (gwt-maven-plugin).

I'm trying to clean install a GWT project with the gwt-maven-plugin. I'm running into the following issues several times: Finding entry point classes [ERROR] Errors in '.../core/impl/MyClass.java' ...
4
votes
2answers
51 views

what is the overhead of wrapping primitives as objects in javascript?

What, if any, overhead is incurred by wrapping primitive JavaScript values so they become objects? For example: > var x = Object(12); undefined > typeof x "object" > ({}).toString.call(x); ...
0
votes
1answer
29 views

GWT-OpenLayers and OpenLayers.Format.WMSCapabilities

I am working with the Google Web Toolkit wrapper for OpenLayers. I'm attempting to add a WMS layer to a map, but I need to parse a Capabilities document in order to get the available layer names. I ...
2
votes
1answer
27 views

How can I force HtmlUnit to parse a Javascript file in UTF-8 in a GWT Test Case?

I'm writing a GWTTestCase on a GWT Module including an external Javascript file which contains non-ASCII characters in variables names (d3.js). I get this Error : SEVERE: error: message=[illegal ...
0
votes
1answer
36 views

libgdx 0.9.8 compilation to html5 not working on phones browser

I am building the libgdx demo app with Gdx setup GUI, then I compile it to html5 and deploy the war. Everything works fine in a desktop browser, but when I test it in a mobile browser, android 4.1.2 ...
0
votes
1answer
11 views

GXT NumberField / TextField align right

Is there a clean way to align the digits of a NumberField to the right? I found this post which suggests an answer in GXT 2 : this .setInputStyleAttribute("text-align", "right"); But it does not ...
0
votes
0answers
23 views

Need help debugging missing content-length header of static files

As you know Vaadin is Java web development framework. My problem is with Vaadin Widgetset. They are compiled into Javascript which are split into multiple files for faster loading. The problem arises ...
0
votes
1answer
29 views

How to have a distribuited GWT application with ObjectDB and Spring?

I've been developing a GwT application as a project for my computer science faculty. It consists in 2 or 3 hosts running it, each of one has a client and a server and it is designed for a company ...
0
votes
0answers
29 views

set date picker to default date in gwt

I have GWT Date picker (GWT Validating textbox) control on my spring web application. I want to restrict user for date selection such that the user registering to my system must be 16 years or older. ...
0
votes
2answers
18 views

GWT - click event on day in DatePicker

In GWT I want to handle the click event, but only when user clicks on a day. There's a valueChangeHandler but it fires when value change, so when I click two times at the same day it will fire once. ...
0
votes
0answers
18 views

GWT Editor: ValueListBox and Validation

I use TextBox- and ValueListBox-objects as sub-editors in an editor with validation and display the errors in the showErrors(List<EditorError> errorList) method. It works fine with the ...
0
votes
2answers
15 views

GWT - Handler for lost focus on widgets in flextable

I'm currently coding in GWT, for the first time, and it's going well so far. I'm having a problem with EventHandlers though. I have a FlexTable which has 2 columns, 1 for labels, and 1 for ...
0
votes
0answers
15 views

GWT ListEditor with polymorphic types - impossible to update

My problem is almost the same as this one : ListEditor with polymorphic types Thomas had a good answer, but it is not enough for me. I want to display list of objects that could be differents, so ...
0
votes
1answer
837 views

How to replace the center panel of a DockLayoutPanel in GWT?

From an EntryPoint class I load a custom build westPanel. From this WestPanel I would like to replace the center of the DockLayoutPanel present on my EntryPoint class. Here is my EntryPoint class: ...
0
votes
1answer
721 views

Read properties file at client side in gwt mvp4g

I am using Mvp4g in gwt and i want to read properties file but if i add resourcebundle code its giving me exception java.lang.RuntimeException: Deferred binding failed for ...
0
votes
0answers
14 views

How to allow client side (using CDN) caching in gwt

I have developed a commenting front-end module using GWT. I am calling my module by embedding comment.nocache.js in my HTML and I send the required variables by using Javascript vars. I can access ...
0
votes
2answers
32 views

How do I call method in RemoteServiceServlet from HttpServlet?

I am using GWT and want to be able to invoke the method incrementProduct(String productName) in my main RemoteServiceServlet by typing this URL in my browser: ...
0
votes
3answers
449 views

basic grid in gwt sencha uibinder not working

I am trying to make a basic grid in GWT Sencha. it works fine , but i am not sure how to put the grid in UiBinder , Not sure what would be the parent widget , thats what i am doing <!DOCTYPE ...
0
votes
0answers
39 views

Execution of both branches of the IF statement

While trying to create a customized DataSource for the SmartGWT's TreeGrid, I found myself in a very peculiar situation. While retrieving the EndRow property of the request, I found that, if it does ...
0
votes
1answer
19 views

Detecting the platform(OS) on which browser is running in gwt

I want to detect whether my site (browser actually) is running on Windows or Linux. I want to do this because I am copying some data to clipboard from my site and this data contain multiple lines. I ...
2
votes
1answer
858 views

Upload .war file to Google app engine (GAE) using appcfg

Out of curiosity, Is it possible to upload single .war file generated by maven to Google app engine using the tool appcfg.(/cmd/sh)? I tried but got errors, when I specify the exploded directory ...
2
votes
1answer
44 views

Parsing user time input in Java/GWT

What is the best way to parse time that a user typed in a text field in GWT? Default time formats require users to enter time exactly as the time format for locale specifies it. I want to be more ...
0
votes
0answers
5 views

continuous actions to be performed when I long tapped MGWT button until the touch end event fired

I want to invoke a method continuously when I used MGWT button long tap handler, this should be done until I release the button. i.e; until the touch end event fired. For this I had written Timer ...
0
votes
0answers
15 views

Styling In HorizontalPanel

I want to customize showing styles of my Horizontal Widget. I have three widgets . Two buttons and one checkbox . I want to show two butttons are in center of Horizontal panel and checkbox is at right ...
15
votes
7answers
10k views

SerializationPolicy error when performing RPC from within GWT application

I'm getting the following exception: com.google.gwt.user.client.rpc.SerializationException: Type 'java.lang.Long' was not included in the set of types which can be serialized by this ...
1
vote
2answers
96 views

Serialization Exception while making an RPC call

I have created a very basic application. I have only one service class and a corresponding Async class which contains only Java types and no custom classes. But still I get the serialization ...
0
votes
1answer
36 views

Making JQuery-UI Plugin work with Errai

I'm trying to make the XEditable Jquery-ui plugin work with GWT/Errai. However, when clicking the supposedly "x-editable" field nothing happens. What could be wrong in my code: This is my code: ...
0
votes
2answers
78 views

GWT - Image not shown in browser (src retrieved from server)

I'm generating a base64 image source at server side and then retrieving it to GWT client through async calls. Unfortunatelly, images are not showing after the callback ends (everything is working ...
0
votes
0answers
7 views

gwt drag and drop group

I have been using GWT native Dnd successfully. Now I have a need to create Dnd group. This means if Widget A and panel B are in the same group, I want to allow user to drag A into B. C and D forms ...
0
votes
4answers
3k views

Error 404 during GWT RPC jetty server

I just written simple RPC call, when i tried i get the below error, could you please help me out to fix this.. [WARN] 404 - POST /com.sribalajiele.gwt.client.SriBalajiEle/emailRpcService (127.0.0.1) ...
0
votes
1answer
32 views

How to add a generic “All” value in GXT ComboBox

I have a generic GXT3 ComboBox which display all available values for enums : public static <T extends Enum<T>> ComboBox<T> buildEnumCombo(Class<T> t){ ListStore<T> ...
0
votes
0answers
17 views

google search page - barcode input triggers event

I need a similar thing as google does on their search page. If the user enters something via keyboard or barcode scanner anywhere on the page, this input will be put in the search textbox. It really ...
0
votes
2answers
246 views

Is there any ORM tools on google app engine (Java)?

everyone. I used Ruby and Rails before, and I enjoy Rails's ORM, which make me develop application very fast... ...(also make me reduce lots of SQL statement.) But now, I need to move from ROR to ...
3
votes
0answers
27 views

code analyzer specifically for gwt code?

I have been going through code analyzers like pmd, findbuigs. They cover many cases and seem to be great to use. But wanted to know if there is any code analyzer specifically for gwt code?
0
votes
0answers
16 views

GWT Three.js OBJMTLLoader had no method 'addEventListener'

I work on a GWT project and I want to use Three.js and the OBJMTLLoader. I use three.js example to load an obj in the html file: var loader = new THREE.OBJMTLLoader(); ...
0
votes
1answer
38 views

How to add an image while we drag n drop tree item?

I have a tree with number of childs and i want to drag and drop these child items on a vertical panel. Right now its working fine.The only thing i want to know is can we add an image in the place of ...
0
votes
0answers
15 views

printing issues with firefox or GWT

I am working on some project based on Java and GWT. Following is the description of one of my module. I have GWT contentFrame (iFrame after browser render) and i have one print button to print the ...
0
votes
0answers
13 views

In-place editing with GwtQuery and Errai

I have this issue with making GwtQuery and Errai work. The way this code (should) work is that when alink is clicked it should trigger the GwtQuery plugin Enhance and make the anchor a textbox (for ...
3
votes
1answer
33 views

GwtChosen not playing well with GWT LayoutPanel and RootLayoutPanel

I am using GwtChosen 1.1.0 and GwtQuery 1.3.3. It seems to play nice only with RootPanel widgets and not RootLayoutPanel widgets. Is being not usable with RootLayoutPanel a known limitation with ...
3
votes
2answers
887 views

How can I consistently remove the default text from an input element with Selenium?

I'm trying to use Selenium WebDriver to input text to a GWT input element that has default text, "Enter User ID". Here are a few ways I've tried to get this to work: searchField.click(); ...

1 2 3 4 5 262