GWTP, or gwt-platform, is a framework to facilitate the development of large applications for the Google Web Toolkit (GWT).
0
votes
0answers
23 views
Deploy gwtp hello world
Using the directions at https://github.com/ArcBees/ArcBees-tools/blob/master/archetypes/gwtp-basic/README.md and http://c.gwt-examples.com/home/maven/ide-import/eclipse I've created a GWTP project ...
0
votes
1answer
35 views
Assisted Injection with enum parameter
I have multiple presenter widgets that I pull from a clientfactory using assisted injection.
public interface FieldFactory {
TextboxPresenterWidget createTextBoxWidget(Field field);
...
0
votes
0answers
18 views
GWTP BoilerplateGeneration
I'm using BoilerPlateGeneration of GWTP. You can find info of what is it here:
Boilerplate Generation
I want to keep javax.validation annotations, but when the code is generated, they are not in.
...
0
votes
3answers
63 views
GWTP using Spring in server side
I am working with gwtp and I would like to use Spring on the server side. I have seen that Spring is include in gwtp, but I don't know how I can use it. Anyone can help me about that?
Will be cool ...
0
votes
1answer
43 views
GWT Platform UiHandlers not working
I have followed the GettingStarted on the GWTP tutorial
http://code.google.com/p/gwt-platform/wiki/GettingStarted
but unfortunately handlers not working, getUiHandlers() return null and exception ...
0
votes
1answer
31 views
GWT Custom PushButton not working with ImageResources
What I need is exactly a gwt PushButton in term of behavior with the exception that I need it to have an image in addition to the text.
I use GWT, GWTP and the UiBinder
In my ui.xml file, the ...
0
votes
1answer
52 views
GAE - Unable to instantiate - java.lang.RuntimeException
I do not know how to debug the following error : (could you explain me how to debug this kind of error ?).
One error is related to Guice Filter, and the other one is related to MessageBodyReader.
...
-1
votes
1answer
43 views
Populate data in dropdown from google datastore
Hi I have gwtp google appengine application which has a search field which is a dropdown. The data in the dropdown has to come from the datastore. But my problem is this data in the datastore is not ...
0
votes
2answers
58 views
GWTP (Java): Apply CSS style on div element
I am using GWTP and I am trying to include boxcontainer style in a div element. However, it is not working. Seems that the CSS is not properly link? Any ideas? Thanks
resources/Thumbnail.css
...
0
votes
1answer
109 views
Deploying a gwtp maven app: See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
Using the directions at https://github.com/ArcBees/ArcBees-tools/blob/master/archetypes/gwtp-basic/README.md and http://c.gwt-examples.com/home/maven/ide-import/eclipse I've created a GWTP project ...
0
votes
1answer
65 views
Integrating a GWTP project with a standard GWT project
I have a GWTP application which has no entry point because I don't ever need to run this application on its own. Rather I want to use it within a standard GWT application which has an entry point, ...
1
vote
1answer
34 views
Display the contents of two UI.XML in a single GWT Presenter
I am using GWTP with UIbinder. MyPresenter.java is correctly representing the information on MyPresenter.ui.xml. However, I need to display in MyPresenter.java as well the contents of MyClass.ui.xml, ...
0
votes
1answer
28 views
in GWTP, when creating a new presenter, we set a NameTokens for it with a Hash Bang(!) but the code did not show Hash Bang, so where the hash bang?
Ok, in GWTP (GWT Platform, not Gwt), when creating a new presenter in eclipse, there will be a field "Token name:" for us to set a name token. So, I added a Hash Bang at the Front of the NameToken
...
0
votes
1answer
88 views
GWT + Spring + No bean named 'dispatch' is defined
while trying to use spring dependency injection instead of guice, getting below error
No bean named 'dispatch' is defined
[WARN] /dispatch/
...
0
votes
1answer
107 views
GWT: Provider vs AsyncProvider
what is the difference between provider and AsyncProvider in GWT. My understanding is that both are used for code splitting and delayed instantiation.
so I am not able to decide, in which case we go ...
0
votes
0answers
44 views
AssertionError while place request
I have gwt application and I used place request in no of places. It works fine. but I don't know why AssertionError came uncertainly and hang execution of webapp in this place request.
...
0
votes
2answers
47 views
Common calls handling using GWTP
I have a presenter which makes calls to Handler and get the data from server
same data is needed for another widget which is a miniature version of the existing view, but this will present all time in ...
0
votes
2answers
173 views
GWTP : events and nested presenters
I have some problems with events in GWTP.
I have a MainPresenter which extends TabContainerPresenter.
This presenter is linked to a MainView which contains some ui components + some ...
1
vote
0answers
43 views
FormItemIcon smartgwt with gwt platform wrong href
I am facing a problem since long time with Smartgwt & gwtp.
FormItemIcon is an element of SmartGWT. When adding a click handler to this element,
It add a "click" event to it from what I ...
-4
votes
2answers
87 views
Find the token in GWT [closed]
Interestingly one of the developer of application is on leave and there is no way I can reach him.
We have a GWT application and we are trying to load a page temporarily with passing a token to a ...
0
votes
0answers
48 views
create and update celltree within GWTP
I'm a novice developing gwtp-application and also new developing celltrees within gwtp environment. There are a lot of tutorials explaining how to create and modify celltrees with gwt but I couldn't ...
1
vote
1answer
96 views
Hibernate+GWTP: session across multiple requests
I am trying to create a wizard-like registration where I have multiple pages with each one a form and a "save and continue" button.
I want to save the data of each form in a hibernate session and save ...
0
votes
1answer
61 views
Excluding jar files from GWTP war file
Currently I am working on a GWTP application. While deploying to application server I remove all the jar files from the application.war file and then I push the war to webapps. I have put all the jars ...
3
votes
2answers
239 views
GWTP Presenter prepareFromRequest - load data into form retrieved from event
I have been trying GWTP for the past couple of weeks and building a small project with it.
Here's the question :
I have a grid widget (attached screenshot) which shows a list of data. On ...
1
vote
3answers
75 views
An RPC error While working with Hibernate In GWT Plotform
I have been trying to use hibernate by fallowing the link gwt with hibernate but i'm getting tha fallowing error but i'm quite sure my Hibernate part is Working properly
but when i'm trying to ...
1
vote
0answers
75 views
GWTP Hiding the parameters from the URL
Is it possible to hide the parameters from the URL?
placeManager.revealPlace(new PlaceRequest("show").with("t", "e").with("x", "1"), true);
URL:
gwt.codesvr=127.0.0.1%3A9997#show;t=e;x=1
I want ...
0
votes
3answers
162 views
Waiting until application return Sucess or Failure(AsyncCallBack)
Just for example, let's check the code below
private void loadUserFromServer() {
dispatchAsync.execute(new FindLoggedUserAction(),
new AsyncCallback<FindLoggerUserResult>() {
...
0
votes
1answer
62 views
How can I know what Widget call the Handler or Event?
I'm using GWT-Platform in my project, and I want to check what Widget called some Handler, for example, a BlurHandler.
The reason for my question is below. This BlurHandler is registred by four ...
0
votes
2answers
159 views
GWTP: clear presenters on logout
Im using GWTP in my GWT app and have the following architecture:
LoginPresenter (Presenter)
DashboardPresenter (TabContainerPresenter)
TabbedPresenter1 (Presenter)
...
0
votes
0answers
141 views
How to reveal a presenterwidget/presenter in it's parent only on some event in gwt platform?
I'm doing an application in GWT-Platform. I've layouted my main page using dock layout. In the west part of the dock layout I'll be having some links (Anchor). Based on what I'm clicking I have to ...
0
votes
1answer
88 views
GWTP HttpSessions with Cookies disabled
I have a GWT app that is loaded within an iFrame. The app uses GWTP for client server communication. In the ActionHandler implementation a HttpSession Provider is injected.
@Inject
private final ...
0
votes
1answer
54 views
Render main presenter view in a specific div
For a GWTP based MVP a typical main presenter will be revealed with this code:
@Override
protected void revealInParent() {
RevealRootContentEvent.fire(this, this);
}
This will render the View ...
1
vote
3answers
195 views
not able to see DockLayoutPanel content except header
I'm trying to layout my page using DockLayoutPanel and i'm using gwt-platfrom plugin to create presenter and view pairs. when i've added the following code in my view.ui.xml i'm able to see only ...
0
votes
1answer
75 views
GWTP: onUnbind() never called after closing a presenter
I have a GWTP MyPresenter that registers a handler at onBind(), and it works perfectly. The problem is when I leave the presenter using the BACK arrow on the browser. The onUnbind() is never called (I ...
0
votes
2answers
127 views
GWTP: event sent once but received (handler) twice
On GWTP I am sending a UpdateDiagramBoxEvent with the code below, but the handler is executed twice. In other words, I can see that the sendUpdateDiagramBoxEvent() is executed only once, but it is ...
0
votes
1answer
99 views
Turn GWT Asyncronous call (DispatchAsync) into Syncronous
Function canReveal() returns true if class ClientState has user information. If not, it first tries to get that user information using asyncronous call to GetUser. What I need to do inside the IF is ...
0
votes
2answers
438 views
How to use UiHandlers of GWT Platform?
I've been trying to write contacts. example using gwt-platform I've successfully got the contacts view using manual reveal to obtain contacts list, I'm trying to use UiHandlers for add button but it ...
0
votes
1answer
154 views
GWT-platform dispatch + phonegap
I am using GWT-platform + mgwt + phonegap. I am trying to make a call to my server using GWTP actions, but the call does not go through in the iOS simulater. The call works on the mobile browser.
I ...
0
votes
2answers
206 views
Using prepareFromRequest(PlaceRequest) from GWT presenter widget
I am trying to get a URL parameter from a GWT presenter widget, but I am getting these error messages:
The method prepareFromRequest(PlaceRequest) of type ViewDiagramPresenter must override or ...
2
votes
1answer
175 views
GWT/GWTP PopupDialog not always centered due to CSS delayed rendering
I am using GWT 2.4, GWTP and Chrome 22.0.1229.94 for testing. I have struggled with this issue for days.
On startup I present a custom PopupDialog using a view that has extended PopupViewImpl. In an ...
0
votes
2answers
232 views
GWT create two Views used one Presenter
I want to create two views that will use one presenter is it possible? I know that i can use two presenters that use one view, but i'm looking for opportunity to have two equals views that used one ...
0
votes
0answers
48 views
Problems with GWTP mergelocales.py
I'm trying to use the mergelocales.py script but I can't get it working.
In my ui.xml (the one that I am using to test it) I have this locales:
<ui:UiBinder ...
1
vote
0answers
58 views
Using RequestBuilder with GWTP for batch calls
What is the best practice to implement batch requests with GWTP using RequestBuilder. I need to get data from php server using JSON.
0
votes
2answers
180 views
GWTP - Clear PopoupSlot
I'm new in programming gwtp and have a problem using the popupslot:
I have several nested presenters. One presenter reveals a popup dialog. Every time, when this presenter is revealed, the popup ...
0
votes
3answers
233 views
GWT RequestFactory vs GWTP Actions
I am developing a GWT app using GWTP (Model-View-Presenter) that is deployed to GAE. Persistence will be done using Google Cloud SQL.
I am not sure what to use to send data to the database ...
0
votes
1answer
41 views
@ErrorPlace always getting shown
I've been trying to figure out why mu web application is always responding the ErrorPresenter/ErrorView even the tokens are valid:
@Override
public void revealErrorPlace(String invalidStringToken) {
...
2
votes
1answer
134 views
CAS and GWT - keeping GWT place on CAS redirect
I'm trying to use CAS as an SSO solution for my organization.
One of the application that use this solution is a GWT application, using GWTP as its MVP platform.
When trying to navigate to some ...
1
vote
1answer
6k views
gwt compile error: did you forget to inherit a required module? - server side
I have a gwtp application that works. When I compile it with the "-strict" tag I get alot of error in my server side code (only server side):
When I use super dev mode, I get these compile error but ...
0
votes
0answers
231 views
GWTP - ant error - Rebind result 'com.company.client.presenter.*.MyView' must be a class
I am trying to create a mobilewebapp using gwtp+mgwt. I have some presenters which i want to bind for mobile/tablet view only and some for desktop. Is it absolutely required to use bindPresenter in ...
0
votes
1answer
785 views
GWT runtime UserAgent and compile time UserAgent mismatch
I recently change gwt.xml script to only compile 1 permutation(ie8 only), This solve my previous issue, however there is a cosmetic issue arise, which is a annoying popup window shows up every time ...

