Questions tagged [gwt-platform]

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

gwt-platform, or GWTP, is a framework to facilitate the development of large applications for the Google Web Toolkit (GWT). It facilitates the use of a Model-View-Presenter (MVP) architecture and it offers a command pattern supporting undo and redo.

The framework is hosted at: https://github.com/ArcBees/GWTP

248 questions
11
votes
2 answers

Nested presenters with GWTP

I have content slots in my mainpresenter, how can i put, when app load, put the home presenter in one slot and the menu slot in the another ? or isn't possible? thanks in advance.
caarlos0
  • 20,020
  • 27
  • 85
  • 160
11
votes
2 answers

Does the MVP framework included in GWT 2.1 make other GWT MVP frameworks redundant?

GWT 2.1 includes an MVP framework which includes an implementation of the PlaceService outlined by Google's Ray Ryan at Google I/O 2009. That talk inspired some MVP frameworks like GWT-presenter GWT-Platform (GWTP) MVP4G Does GWT 2.1 make using…
boardtc
  • 1,304
  • 1
  • 15
  • 20
9
votes
4 answers

What is the proper way to use gwt-bootstrap modal with gwt-platform?

I am constructiong an webapp with Google Web Toolkit using GWT-Platform and GWT-Bootstrap frameworks. Mostly it has been almost flawless until I tried to implement a popup. These frameworks' undestanding of popups seems to be quite…
Raidok
  • 774
  • 8
  • 19
8
votes
1 answer

why does this code compile with eclipse compiler but not with javac (maven)

There are a bunch of questions like this. I went through most of them but none actually but I couldn't come up with any answer: I have a weird problem in one of my GWT/GWTP classes. The class compiles fine with the Eclipse compiler but fails with…
Ümit
  • 17,379
  • 7
  • 55
  • 74
8
votes
3 answers

How to use GWT's Editor Framework with gwt-platform?

I'm using gwt-platform and tried to implement GWT's editor framework. But I don't get it working from within the presenter. There are some answers around the web, that say I have to inject the EditorDriver somehow into the Presenter, but I don't…
Benjamin M
  • 23,599
  • 32
  • 121
  • 201
7
votes
3 answers

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 passed, I found it was hard to maintain a clean…
Antonin M.
  • 71
  • 1
6
votes
1 answer

GWT serialization of a subclass

I have RPC service that returns an object of type GameEvent that extends from Event (abstract). When I get the object on the client side, all the properties inherited from Event (eventId, copyEventId, gameTimeGMT) are set to null whereas on the…
Sydney
  • 11,964
  • 19
  • 90
  • 142
5
votes
2 answers

GWT - Error constructing Java AST

What could possibly be causing this error during compilation? I have generated project from this archetype https://github.com/ArcBees/Arcbees-Archetypes and I have changed only thing - update GWT to 2.8.0 and GWTP to 1.5.3. [INFO] [ERROR] An…
leiblix
  • 626
  • 1
  • 8
  • 21
5
votes
1 answer

How to inject Session/User object after bootstrapping?

There are examples where different kinds of objects are getting injected into a presenter, but I can't find an explanation how this can be done. In the Bootstrap-Code example they are injecting e.g. a SecurityDelegate object. Also in the Gatekeeper…
Stefan Falk
  • 23,898
  • 50
  • 191
  • 378
5
votes
2 answers

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 automatically call a method right when the modification…
Bernardo Vale
  • 3,224
  • 4
  • 21
  • 34
4
votes
3 answers

GWT-Platform login + session management

I am new to gwt and I am creating a login page using gwt and I need help with session managment. All answers already given here, explains how to manage sessions on server side, I need to use session on client side (browser's session) exactly like…
Igor Govorov
  • 43
  • 1
  • 4
4
votes
2 answers

How to populate a CellTree with data from the back end

The CellTree has a constructor that takes a TreeModel. I can't set the tree model via a setter. I fetch the data for the tree via an asynchronous rpc call, this call is triggered on creation of the presenter corresponding to the view that holds the…
Michael Wiles
  • 20,902
  • 18
  • 71
  • 101
4
votes
1 answer

GWTP Gatekeeper and the UserService

I am having a problem using the Gatekeeper feature of GWTP. Following the example gwtp-sample-tab I have created the client code. But now I am still wondering how to notify the client side if the user has successfully logged in? (I am using the…
Mark
  • 7,507
  • 12
  • 52
  • 88
4
votes
1 answer

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 (placeManager.getCurrentPlaceRequest()) succesfully but when…
Bhavesh
  • 519
  • 6
  • 26
4
votes
2 answers

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 image bundle. [java]…
blue01
  • 2,035
  • 2
  • 23
  • 38
1
2 3
16 17