The gwt-2.4 tag has no wiki summary.
5
votes
1answer
114 views
GWT - Datagrid : Keyboard single selection, when multi selection is enabled
When I enable keyboard selection policy and multi selection on DataGrid I encountered this problem.
Case 1 : Multi selection through mouse and keyboard
When I want to select more than one row ...
1
vote
1answer
238 views
Pagination not working on GWT DataGrid
I have a DataGrid which shows say Employee details. For example, every row corresponds to an employee(name, age, salary) and name+age are anchors and salary is plain-text.
Everything is working fine ...
2
votes
1answer
300 views
GWT: How to simulate F11 key press event?
I was wondering, can we trigger any key press even in GWT without JSNI? For example, say I have a image or a button in the header of my application. On click of it I want to go fullscreen on browser ...
0
votes
1answer
287 views
Upgrading from gwt2.4.0 to gwt2.5.0 giving exceptions
I have a application for that i have updated from gwt2.4.0 to gwt2.5.0.
When i am running the application then seeing the following exception.
18:34:25.338 [ERROR] [OneViewUI] Errors in ...
3
votes
2answers
123 views
GWT NoSuchElementException with HTMLPanel and addAndReplaceElement method
Here some explanations.
If my HTML page contains :
<div id="cancel_date">
<h3 id="cancel_date_title"></h3>
<table align="center">
<tr>
<td ...
0
votes
0answers
31 views
How to debug on remote server with authentication
I have a GWT-based web app with spring MVC and the problem is that I cant run this application in dev mode.
I have added the parameters: -noserver -port 8080 -startupUrl localhost
But after I'm ...
0
votes
1answer
141 views
GWT manipulating DOM elements caveats
Following this question I have recently asked : Understanding Document.createElement()
Here is the context :
There is a text-zone in my GWT GUI that holds a text
Users can select a word (or a ...
0
votes
0answers
194 views
How to correctly position GWT google-map widget?
I am using GWT google maps v3. and I am having problems with map view. When I load the page I get the map half trimmed. Also when I set map center log lat and set the same parameters to a marker and ...
2
votes
1answer
245 views
GWT: Continue editing the same object after request to server
Is it possible to continue editing the same object after GWT server request?
Consider best-practices code from another question
void start() {
// Either get p
context1.get(..).to( new ...
1
vote
2answers
178 views
In GWT application, how to secure my Places and Activities from unauthorized users?
I have a GWT application using Activities and Places pattern to navigate throw different places in my application.
In the application there are places where only authorized user can view.
The ...
0
votes
1answer
251 views
How to style GWT CellList?
I have a CellList that I want to style. I want to change the cursor style, the ugly color of a selected cell . I checked several questions and discussions on stack overflow,but none of them worked.
I ...
1
vote
1answer
847 views
GWT create Image using ImageResource
My question is really simple and shot. but hope I can have a clear answer.
We can create GWT Image in many ways.
Image image = new Image ( (ImageResource)imageRes);
Image image = new Image ( ...
0
votes
1answer
359 views
“GWT module may need to be (re)compiled” when deployed into the Tomcat and the war is generated with maven
I got the issue( "GWT module 'SmartWPS' may need to be (re)compiled") while accessing the url. I have generated the war file by running maven-clean-install. I placed the same war file in the /webapp ...
0
votes
0answers
74 views
getting exception while integrating GWT GIN with Maven
getting following exception when running using maven
[INFO] auto discovered modules [com.infor.ion.boddesk.ui.sample.Employee]
[INFO] Compiling module com.infor.ion.boddesk.ui.sample.Employee
...
0
votes
1answer
532 views
How to make GWT Spring project as maven enabled
I have a project which we implemented using GWT and Spring.
I want to make the project as maven enabled.
How can i achieve that?
I have seen GWT maven plugin. Is it definately required?
Thanks,
...
0
votes
1answer
138 views
How to integrate the GWT command pattern with spring
I have a project where I am using the GWT command pattern to implement the RPC. Here how i can integrate the Spring with GWT. Without Spring I am able to achieve the RPC. But here i need to use Spring ...
1
vote
3answers
371 views
Dependency Injection in GWT or of Spring
I am new GWT. I have a project where I am using GWT and Spring as our technologies to implement.
I have done Spring integration with GWT, with the help of following links.
...
0
votes
1answer
192 views
How to get a list of days or a number of days in a month with GWT?
What is counter part of this code in GWT ?
public int returnAllDaysOf(2012,6){
Calendar calendar = Calendar.getInstance();
calendar.set(2012, Calendar.FEBRUARY, 1);
int ...
0
votes
0answers
349 views
Problems with starting a GWT project in development mode and in Tomcat [closed]
I have created a small project with GWT 2.4, Spring 3.0, Maven 2. When I try to start the project in development mode, I get the following error message:
Missing required argument 'module[s]'
...
0
votes
2answers
63 views
How do I develop a non-UI client-side GWT library?
I wish to write a shared library to be used in various GWT applications. The shared library will leverage GWT APIs and should not be able to use non-emulated Java classes.
Two questions:
Is there a ...
0
votes
0answers
107 views
Should ErrorCollector (which is part of JSR-303 functionality) in GWT 2.4 be redesigned?
I know this question is not about particular problem I have. It's rather question to GWT SDK team. As far as I remember StackOverflow is now their official communication channel with engineering ...
1
vote
1answer
81 views
gwt- is it safe to use oauth through GWT in a native or web app
I came across this library- http://code.google.com/p/gwt-oauth2/
What I am wondering about is, if I use that library, will it enable a hacker to gain access to my private clients' data? Will the ...
0
votes
1answer
160 views
Single image with GWT 2.4 requires an ImageResource?
I was just adding a single image to a GWT 2.4 application I was working on. I just put it under the images folder in the war and I had it working properly until I would compile it. Then it would get ...
2
votes
2answers
2k views
GWT and Hibernate Validator
I have problem with using Hibernate Validator with GWT 2.4. When module is starting i get error:
00:00:05,562 [ERROR] Deferred binding result type
'javax.validation.ValidatorFactory' should not ...
1
vote
2answers
643 views
Why does my History.newItem(someToken) not fire onValueChange()?
Even though it is correctly fired when I use History.fireCurrentHistoryState();
EDIT: All classes in the same package. Code updated -
TestHistory.java
public class TestHistory implements ...
2
votes
2answers
566 views
why does changing “module -> rename to” attribute in .gwt.xml file give error
I am able to create and run a simple GWT application by creating all the files myself. It works fine and I am able to see the correct display.
I tried playing around the code to enhance my knowledge. ...
0
votes
1answer
518 views
GWT - datagrid column with integer values
I want to add a column to the datagrid in GWT, the column should show integer values. However, i cannot find any cell that can show an integer. This is my code
Column<Trade, Integer> ...
2
votes
1answer
195 views
Use Java constant in GWT Javascript Overlay Type (JSO)?
I would like to define the GWT JSO property name as a constant in the JSO, in order to avoid typos and benefit from Eclipse code completion, like so:
public final class MyJSO extends JavaScriptObject
...
0
votes
1answer
134 views
How to create a java project as a jar for GWT
I'm wanting to use some java code as a reusable component jar in my GWT 2.4 application.
I need access to that code on the client side, so I've read that the steps involved are to
add an entry in ...
0
votes
1answer
376 views
How to retrieve inputStream from the server using fileUploader and GWT 2.4?
I have a fileUploader widget that I'm using to select an xml file. I then have a button that calls my handler in the viewImpl class when the user submits the selected file. If I understand things ...
4
votes
2answers
1k views
How to add CSS AnimationEnd event handler to GWT widget?
I would like my GWT widget to be notified when its CSS animation is over.
In plain HTML/Javascript this is easily done by registering an event handler like so:
...
0
votes
1answer
544 views
GWT Datagrid selective refresh of some columns and not others
Hi I have created a GWT datagrid, which has 10 columns. Of these 4 columns are for user entered data, and the rest are values loaded from a database. I have implemented a timer that refreshes the ...
1
vote
2answers
693 views
Adding three or more widgets to a GWT LayoutPanel
I want to display three or more DataGrids in my LayoutPanel and specify their width as a percentage of the total width of the LayoutPanel, but in the LayoutPanel methods i see only methods for setting ...
0
votes
1answer
89 views
GWT Exception in Storage.isSupported()
I am struggling with a GWT problem that suddenly occurred in a component of my app that I didn't even touch.
I get an Operation is not supported exception in the 2nd line of Storage.isSupported(), a ...
4
votes
2answers
3k views
GWT CellList Click to Toggle selection (Multi-Selection)
I'd like to setup a CellList so that clicking a row will toggle the selection. Such that multiple rows can be selected with out the need for holding the ctrl key.
What do I need to change to get it ...
0
votes
1answer
128 views
Requestfactory always fetching all Dependencies
when I fetch an object using the requestfactory it always fetches all dependencies even without using with().
I created a testcase:
public class TestObjectC {
String c;
TestObjectB b;
...
0
votes
1answer
610 views
Requestfactory Validation on Multi-Project Setup
I tried changing to the release version of gwt2.4 and run into a problem. I use multiple projects in my setup. I have a project with serverside code, one project with shared code, that can be used in ...
0
votes
1answer
260 views
GWT - how to implement RequestContext methods outside an @Entity-annotated class?
Is it possible to implement RequestContext methods outside an @Entity-annotated class?
@Entity
class TheEntity {
public static TheEntity theMethod() { ... } // don't want it here
}
...
3
votes
1answer
652 views
GWT 2.4.0 RequestFactory polymorphism
Does GWT 2.4 support this case:
@Entity class MyBase {...}
@Entity class MyChild1 extends MyBase {...}
@Entity class MyChild2 extends MyBase {...}
...
@ProxyFor(MyBase.class) class MyBaseProxy ...
2
votes
1answer
837 views
GWT, Maven and AspectJ: RequestFactory validation for AOPed code?
To use GWT 2.4.0 RequestFactory, you have to run request factory validation tool. Otherwise, it just won't work. [Google says][1], that it's enough just to add 2 plugins to pom.xml:
<!-- ...