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)

0
votes
2answers
41 views

How to create multiline ListBox in GWT?

In my project the value to show in GWT list-box is big(from database). So user is not able to see the full value at once. For this I have decided to add display value in multiline. I have used tags ...
0
votes
1answer
49 views

Custom object filter for a grid column in sencha GXT

Important edit: I added a depth level to the situation to better reflect my problem. I have a GXT Grid with a ListStore of a certain type Foo. Foo happens to have some important object properties, ...
5
votes
0answers
52 views

GWT TypeOracle.getTypes does not return all types

I have a custom generator that generates code only for somes classes in my project. The following code is at the beginning of the generate method, and puts all the classes I will need to work on in ...
4
votes
1answer
101 views

how to add a clickHandler on a subRow of celltable in GWT

I am using Custom Data Grid from GWT showcase example .. http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCustomDataGrid Every thing is working fine ..I have sub Rows inside my rows ...
1
vote
1answer
36 views

horizontal ScrollPanel in mgwt

I need a horizontal ScrollPanel in mgwt and tried to use: contactHorizontalScrollPanel = new ScrollPanel(); contactHorizontalScrollPanel.setShowScrollBarX(true); ...
1
vote
1answer
41 views

Pagination GWT DataGrid for Large Data

I have a case where my DataGrid might contain thousands of rows of data. My page size is only 50. So I want to get only so much data onto the client from server and load rows of data as and when ...
0
votes
1answer
14 views

What entries to add to app.yaml to handle expiration of files of a GWT client app?

Google give the following example of setting up an Apache server to serve a GWT app. What is the equivalent entries to an AppEngine (GAE) app.yaml file? <Files *.nocache.*> ExpiresActive on ...
-1
votes
0answers
38 views

How to print bank passbook using java via passbook printer [closed]

I am developing a banking application and I need to print the user's account transaction in the Bank Passbook .if any of you guys have any experience in passbook printing, please post you suggestions ...
0
votes
0answers
28 views

How SafeHtml & SafeUri deal with malicious image?

Pls read this scenarios: -You build a program that allows user to insert Image or Image URL into 1 field in a table in DB. For example, table imgTbl has imgCol which contains ...
0
votes
1answer
33 views

GWT Appliaction with 3rd Party Library works in Development mode but not Deployed mode

I am working on a GWT application and I am using 3rd party Java-R wrapper library. This will be converted into Java Bytecode and (I guess) call some methods via the R libraries.. I was able to ...
2
votes
1answer
72 views

Align GXT form:FieldLabel with its gwt:Label widget

GXT 3.x only. Let us say I wish to create a gxt field-pair of the layout label: value For example, Name: Carthyguessue Where "Carthyguessue" is a constant field not updateable by user, ...
0
votes
0answers
43 views

Tutorial on setting up Java-To-R (JRI rJava) to work with GWT Application

does anyone know a way to configure the wrapper for Java-to R (JRI or rJava [they are i think the same thing) How do I need to configure it, what to do? Do i need to modifiy the project xmlfile and ...
0
votes
1answer
52 views

Generic list with GWT AsyncDataProvider

I have a GWT application where I need to work with multiple data types which are similar, but not quite the same. I want to display them using a CellList backed by an AsyncDataProvider. I'm trying to ...
0
votes
0answers
27 views

Desktop application work with gwt website

I have GWT project web application. Now I have to create desktop application to work with this website. Is there any libraries? Web application uses rpc form GWT framework. Objects are serialized by ...
0
votes
1answer
32 views

UnableToCompleteException with no log

Trying to run my GWT app, I get EntryPoint initialization exception Exception while loading module ch.swisstph.mortqual.mqui.client.MqInput. See Development Mode for details. ...
0
votes
1answer
24 views

GWT StockWatcher example explanation

I am beginning with GWT with the StockWatcher example https://developers.google.com/web-toolkit/doc/latest/tutorial/create I run the application ...
0
votes
2answers
26 views

How to get Button in GXT

In my application I have a dialog box, which is not created by it's own class, but just added as a widget to the page. I need to add a listener to the button in this box, which is added to the ...
1
vote
3answers
71 views

How to add an icon to a MenuItem in GWT?

How can I get add an icon with text to a menu item in GWT? The following does not work: <ui:with field='res' type='my.package.MyResources' /> <g:MenuItem text="test"><g:Image ...
0
votes
0answers
35 views

Last changes in code source doen't appear in execution

I have a gwt maven project. when I make changes on java code source and run (after cleaning the project) the application , these changes are not taken into account. How can i do to resolve the ...
-3
votes
1answer
53 views

Dynamic SQL Query and output in simple GWT [closed]

I have the below table(company_details) in oracle 10g. STATE COMPANY_NAME AVG_SAL KN GOO $5500 IN SCOPE $6000 AR FB ...
0
votes
1answer
42 views

Symbol not found - Java

I'm using Olap4j to connect to the OLAP server in GWT. However, when I try to iterate through rows and columns I get a 'Symbol not found' error during compilation. My code for (Position axis_0 : ...
0
votes
0answers
22 views

RootLayoutPanel:- fetch specific content

Please help in understanding this. I want to access specific content on my page. If am using RootLayoutPanel in my view, how can I access specific content using get()? If its not possible why is it ...
0
votes
1answer
53 views

For SafeHtml, Do we need to sanitize the “link” in <img src=link> tag, GWT?

I got a textbox that allows users to put image link (ex: http://abc.test.gif) & another textbox that allows user to put Alternate text (ex: "This is test.gif"), & a submit button. When a ...
0
votes
1answer
26 views

GWT incubator table data ordering issue

I have implemented a gwt incubator table following the example at http://zenoconsulting.wikidot.com/blog:17 this works great however, the order of rows is not same as it is passed using the list ...
0
votes
1answer
40 views

GWT celltable : editable cell size increases when clicked

I have a celltable in my GWT application which have editable cells , when i click on any editable cell in my celltable , it bocomes editable + it also increase its size a lot.. Is there any way i can ...
0
votes
1answer
25 views

How to make the gxt page scrollable

I have an app in which I need the page when it become too large to be scrollable. as for now it isn't. As for example I used the following one: example. Here is the code: public class Rules extends ...
0
votes
1answer
21 views

How to listen to ValueChangedEvents fired by widgets on Editor<?> in GWT?

My Editor concists of several TextBoxes, CheckBoxes, etc. What is the proper way of listening on the editor itself for ValueChangeEvents triggered by its widgets? I'm trying to make sense of ...
0
votes
1answer
26 views

Upload files by GWT to Rails server

I am working on an app that I need to upload files using GWT in the client side, then a servlet receives the uploaded file. My problem that I need to pass the file from the servlet to the ruby on ...
1
vote
4answers
105 views

Download a generated pdf from client

I'm new in stackoverflow thus this is my first post. Please excuse my poor English... I have spent hours on related topics but no anwser met my needs. I'm working on an Address book and I want my ...
1
vote
1answer
32 views

GWT Error: RequestFactory ValidationTool must be run

Everytime I launch my app I get the "RequestFactory Validation Tool must be run..." error even if listEmptyBoxes() is not executed. I already have file requestfactory-apt-2.5.0-rc1.jar on the ...
0
votes
0answers
26 views

gwt drag and drop with custom proxy

I have two panels, first one with dragController (with draggable items), second with dropController. I want to override proxy with another widget. so that when the drag starts the new widget (not ...
-5
votes
0answers
27 views

How to drag and drop photos with folder in gwt or HTML5 [closed]

I tried HTML5 drag and drop demo ..its not working in any browser..Let me know if anybody know the answer
1
vote
1answer
37 views

When modifying SimpleHtmlSanitizer.java, how to deal with <a href=> (Gwt)?

You know that SimpleHtmlSanitizer.java only accepts the following markup ("b", "em", "i", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "ul", "ol", "li"). It is good but I want "u", "sub", "a href=" & ...
1
vote
1answer
28 views

Key Listener called again and again if I click on Browser's back Button with Activity and Places in GWT

I am creating search page and I have use activity and places in GWT. I have used Key Listener so when user press Enter it redirect user on result page. Problem is that when user use browser back ...
0
votes
1answer
49 views

Change span element style for GWT Cell using UiRenderer

How do I change the style for a Span HTML element when using UiRenderer with GWT 2.5? I have setup a simple cell to be used in a CellTable. The ui.xml looks like this : <!DOCTYPE ui:UiBinder ...
0
votes
1answer
28 views

Form submit event in GWT (and GQuery) is causing IncompatibleRemoteServiceException

A form submit event in GWT and GQuery is causing an IncompatibleRemoteServiceException. This project includes GQuery (GWT version of JQuery) which is used to call the form submit. Here's the code for ...
-1
votes
1answer
35 views

Can someone explain this weird String things in GWT?

I used String s="";, List<String> etc in my Gwt projects & i had no error message what so ever. However, when i used String str=myTextBox.getText(); then eclipse gave an error saying that ...
0
votes
1answer
37 views

GWT - admin module protected by authentication?

I have a default GWT + app engine project. We get a GWT entry point by default. Is it possible to create a second GWT entry point, one that is only loaded by html pages which are protected behind ...
1
vote
2answers
79 views

Server/Client side event bus for GWT

I experimented with JBoss Errai and it looked great. Especially its errai event bus part. Does anybody aware of other similar libraries? Are there any articles which describe this pattern in detail, ...
0
votes
1answer
24 views

GWT project changes after compile

I have big maven GWT project. I have added one column to my grid in one module. When I check it through debug from Development mode everything is OK(the column is full of data). But when I create war ...
0
votes
2answers
46 views

ClassCastException with deferred binding only in compiled mode + Chrome / Safari - Firefox works

I have a very strange error, occurring only in chrome and safari. I get an UmbrellaException when calling GWT.Create(foo.class); (Deferred binding) Anyone any idea? I figuerd out that java script ...
0
votes
0answers
34 views

gradlew - unable to find 'org/atmosphere/gwt20/AtmosphereGwt20.gwt.xml' on your classpath

I am facing a problem implementing GWT-atmosphere with GWT 2.4 I have added gradle dependencies to my updprayag-gwtclient module: dependencies { gwtCompile ...
0
votes
3answers
51 views

Session inactive in GWT web.xml

I need session out a application when the user doesn't use the application for the certain time interval.for that I configure session time out in web.xml.but its not working. <session-config> ...
0
votes
0answers
43 views

GWT: SplitLayoutPanel: I don't see the splitter

Sorry, what is wrong? I see western and eastern parts only. I wanted to use the HorizontalSplitPanel but it was deprecated. I don't see any 5px-size splitter between two parts: public class ...
0
votes
0answers
26 views

SmartGWT open link in different browser

I have a smartgwt com.smartgwt.client.widgets.form.fields.LinkItem in an embedded browser (IE), which uses IE. If I click the link naturally the new browser window will come up, (IE) however that is ...
0
votes
2answers
34 views

Vaadin (7.0.5) Window not opening until end of calling procedure

I am trying to open a modal window during a click handler to verify the user action but the window doesn't appear until the handler completes. The window code can be as simple as the following and it ...
0
votes
1answer
38 views

Editor : automatically map the id of a contained object

I have a service which enables the user to search some Item s with many criteria. I have a class which represents those criterias: public class ItemFilter{ private Integer idCountry; private ...
0
votes
2answers
62 views

GWT permutation count

When I do <set-property name="user.agent" value="ie9,gecko1_8,safari,opera" /> the compiler does 4 permutations; But adding : <set-property name="user.agent" ...
0
votes
1answer
37 views

How to select one of GWT CellTree nodes after first data fetch?

I'm trying to select first root node of the CellTree after asynchronous data fetching from server. Here is my code: public class MyTreeModel implements TreeViewModel{ private MyServiceAsync ...
0
votes
1answer
39 views

For setHTML() method, is it still safe If we do not use Safehtml but we validate the String & only accept some limited html tag (Gwt)?

Any widget that has setHTML method could give a hole in security system, but if we validate String & only accept some limited html tags such as <b>, <i>.... And then we put this string ...

1 3 4 5 6 7 262