gwt-platform, or GWTP, is a framework to facilitate the development of large applications for the Google Web Toolkit (GWT).

learn more… | top users | synonyms

0
votes
0answers
9 views

GWTP - Using back button doesn't clear old content

I'm using gwtp and I have some troubles with the browsers back button. My DefaultPlace is a login page (root content). If the the login is correct, it directs you to a welcome page (MainPagePresenter) ...
1
vote
1answer
62 views

GIN AssistedInject issue with factory “Unable to create or inherit binding”

I am getting an strange error which I cannot get past when using Assisted Injection: [DEBUG] [project] - Rebinding com.gwtplatform.mvp.client.DesktopGinjector [DEBUG] [project] - Invoking generator ...
0
votes
1answer
58 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, ...
0
votes
1answer
23 views

How to access Http Session from GWTP CommandHandler

I am new to GWTP. I am trying to build an application using GWTP + Command Pattern + Spring. Currently my application has a login page using Spring controller, which redirects user to GWT page. In ...
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 ...
1
vote
0answers
39 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
86 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
2answers
71 views

GWT ViewWithUiHandlers with DialogBox Uibinder

I have been extending all my Views with ViewWithUiHandlers. So, from the View to invoke a presenter method I call getUiHandlers().OnUserSelect(); How do i get the getUiHandlers() when one of view ...
5
votes
2answers
68 views

It has some method to call after html load is complete when a new Presenter is called on GWT and GWTP?

I need to make some adjustment on a div css. But I can't do this on method onBind() or onReveal() because the html isn't loaded when this two method is called. So I was wondering some way to ...
0
votes
2answers
109 views

an error while appending data to CellTable second an consequent times in GWT/GWT Platform

I'm using popup panel of gwt platform and the popup contains two panels on the top panel i have some textboxes and a search button. and in the second panel contails a cell table which automatically ...
0
votes
1answer
55 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 ...
1
vote
3answers
70 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
1answer
338 views

Handling large amount of data in GWT ListBox

I must do a RPC call when my Presenter is revealled. That call result in a String[] with large amount of data. But this call is very very slow. It takes about 1min to finish. After some tests, i ...
6
votes
3answers
112 views

Testing GWTP presenter with asynchronous calls

I'm using GWTP, adding a Contract layer to abstract the knowledge between Presenter and View, and I'm pretty satisfied of the result with GWTP. I'm testing my presenters with Mockito. But as time ...
0
votes
3answers
403 views

My custom style on ListBox is not applying? is it a browser issue with IE 7.0

I've been trying to apply some custom style to my ListBoxes but the styles are not applying the following is the CSS .gwt-ListBox{ background: #fff; border: 1px solid #96CAEA; } I've inspected ...
0
votes
1answer
95 views

Best practice securing GWTP application

I am working on application using GWT platform, and now i want to add security part. What is the best practice to do this? My requirements for security are: having user authorities; hide some places ...
0
votes
0answers
124 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
50 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
179 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
0answers
30 views

Lost "\n (quotes and newline sequence) from servlet returned text

I'm returning some text from a servlet, which is working well, except for lines ending with a " character. Those lines causes the quotes and following newline character to get lost. Do you have any ...
0
votes
2answers
114 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
2answers
100 views

Class with nested interface as generic type (symbol not found error in maven but works in eclipse)

I have a weird (or maybe not) problem. I am using an MVP framework and defining some of my classes in the following way: public class SomePresenter extends Presenter<SomePresenter.MyView, ...
0
votes
1answer
115 views

How to properly configure my GWT Activity and ActivityMapper?

I have the following classes: // The "backing bean" for DashboardDisplay.ui.xml (which is omitted for brevity). public class DashboardDisplay extends Composite implements AcceptsOneWidget { ...
0
votes
2answers
373 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 ...
1
vote
0answers
82 views

Gwt bind event not fully loading external javascript [closed]

I use gwt platform, three webgl framework and smartgwt. Transferring jsobjects into external js does not work properly. The js gets not fully loaded. Used jsni onbind, onreveal, on widgets onattach, ...
2
votes
1answer
167 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
0answers
77 views

integrate gwt-bootstrap with gwtp tab system

what's the best way to integrate the UI library gwt-bootstrap with the Tabs views example in gwt-platform?
0
votes
1answer
330 views

How to transfer an array list of objects over the wire through GWTP action

I am trying to create an action in which the server needs to response an array list of objects over the wire to the client through GWTP Action. Category class package com.business.share; import ...
0
votes
1answer
111 views

How to make a Non Editable CellTable?

I made a dynamic CellTable using this question as guide : Create GWT CellTable Dynamically But like that I can only made a editable CellTable, I don't know why. Check my Code: @UiField ...
0
votes
1answer
362 views

Deferred binding failed for 'com.mycompany.client.gin.ClientGinjector'

I'm really having a hard time fixing the error below as I have properly added the the jars and the <inherits ...> in the gwt.xml file 0 5:27:22.011 [ERROR] [myapp] Failed to create an instance ...
0
votes
3answers
216 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
0answers
102 views

GWTP Tabbed presenters url token parameter

I have an issue similar to this thread question. GWT-platform doesn't provide an easy solution for keeping a nameToken url parameter across the tabbed presenters mechanism. we need as explained in the ...
3
votes
1answer
252 views

GWT-Platform : onReveal() method is not invoked on browser refresh when application is deployed on tomcat/jboss

In one of my GWT-Platform application I am facing a weird issue, when I run application in jetty configured in eclipse GWT plugin and hit the browser refresh current page is loaded ...
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) { ...
0
votes
2answers
208 views

OpenId: login on webpage with Facebook and Twitter

I have implemented with GWT an OpenId authentication service that works for Google and Yahoo. Users of both platforms are allowed to login with their account to my website, and we can retrieve some ...
0
votes
1answer
138 views

GWT (or javascript) library for couchDB

I'm looking for a good design (best practices) to integrate a couchDB layer with my GWT app. I did some research and found the gwt-couchdb project which seems to propose a method to integrate GWT and ...
0
votes
0answers
218 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
221 views

GWT and Spring Annotations not working with External projects

I am working with GWT and a Spring server. I have an project that I am using for a number of projects that has Spring annotations (@Repository, @Service, @Component etc.) that work in other webapps ...
2
votes
2answers
267 views

GWTP - An error occurred while trying to write the image bundle

I am getting a lot of these errors while trying to build gwtp+mgwt app using ant- Preparing method tabBarMoreImage [java] [ERROR] An error occurred while trying to write the ...
0
votes
1answer
113 views

GWTP ant build.xml - No processor claimed any of these annotations

I am trying to write the build.xml for a GWTP+MGWT project for mobile, desktop & tablet. <property name="in.src.folder" location="src" /> <property name="apt_generated" ...
0
votes
1answer
279 views

GWT RPC not generating a proper gwt.rpc file

I am using gwt with gwt-platform and making a server call with the dispatch async. The issue I am running into is that the Action that I am using is not being marked as serializable or being added to ...
0
votes
1answer
337 views

GWT-Platform revealing presenters together

Hey so I am just learning the gwtp framework and I have come across a bit of a dilemma. I have a LayoutPresenter at the top level that has a main content slot and menu content slot and I am trying to ...
0
votes
1answer
134 views

How do i know if a SingleSelectionModel.getSelectedObject() will be NULL?

Let me explain. SingleSelectionModel<UsuarioDTO> selectionModel = new SingleSelectionModel<UsuarioDTO>(); @Override public UsuarioDTO getUsuarioSelecionado() { return ...
2
votes
3answers
241 views

GWT-platform different between Action and Event

In GWT-platform, what is the different between Action and Event?
1
vote
1answer
206 views

GWTP Nested Presenter : Type<RevealContentHandler<?>> Cannot be resolved

I'm trying to make the nested presenter in GWT. I've been "copy & paste" code from the sample GWTP project @http://code.google.com/p/gwt-platform/wiki/SimpleNestedSample At one point the code ...
2
votes
1answer
124 views

Feature-Toggle with GWTP

As you may know, Feature-Toggle is a method to deploy features that are not fully ready, and turn them on by using some configuration. Features can be turned on for specific customers (A/B testing for ...
0
votes
1answer
348 views

How to use in-page HTML anchors with hashbang URLs (in GWT)?

I have a little problem with implementing in-page HTML anchors while also having bookmarkable URLs via hashbang. The description is easy: I visit some URL of my application: ...
0
votes
1answer
715 views

How to build a GWT Drop Down Menu Bar in absolute positioned parent panel?

I have a GWT application with a header and a content. The header is an absolute positioned HorizontalPanel the content is also a HorizontalPanel which is positioned absolute. How can you get ...
0
votes
1answer
262 views

Actions from gwt-platform are executed multiple times

I am using gwt-platform, objectify and appengine (java). I am trying to create a user and session management system after best practices. I would like this to be a reusable module in applications. I ...
0
votes
1answer
201 views

Opening a presenter in a new window in GWTP

Currently, i have to implement a print functionality. I had used a pop up presenter on click of a print button, to print the contents of only the pop up panel. but its also printing the contents of ...

1 2 3