Questions tagged [gwt-mvp]

This is an implementation of the Model-View-Presenter pattern for GWT.

This is an implementation of the Model-View-Presenter pattern for GWT (Google Web Toolkit) based on the "GWT App Architecture Best Practices - Ray Ryan" GWT Model-View-Presenter is a design pattern for large scale application development. Being derived from MVC, it divides between view and logic and helps to create well-structured, easily testable code

124 questions
0
votes
1 answer

Remove date from DatePickerCell in gwt

I have implemented a CellTable in gwt, which has a column of type DatePickerCell, which opens a datepicker on click of the cell. I would like to implement something like DateBox, which has a textbox, on click of which a date picker will be opened…
KB Prodigy
  • 231
  • 5
  • 13
0
votes
3 answers

Understanding GWT AbstractActivity's start method

I'm trying to learn both GWT-recommended MVP and their Activities & Places API (yes, I know they are two different things, but they seem play nicely into each other). In a lot of code examples of Activities/Places, I keep seeing the following…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
0
votes
1 answer

Update a view in GWT

I'm so new in GWT and having some troubles while I'm trying to update a view. I'm trying to code based on MVP pattern, so I have these two classes TempPresenter and TempViewer. After loading this UI (TempViewer.ui.xml), I want to add a new panel to…
simon_tulia
  • 396
  • 1
  • 6
  • 22
0
votes
1 answer

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) with a menu bar. This menu bar is always visible…
kArvee
  • 84
  • 1
  • 11
0
votes
1 answer

Change doctype in GWT

I have a GWT MVP application and I use FormFactor to determine which version of the app to serve for Mobile, Tablet or Desktop. My issue comes since Mobile version for IE needs a different doctype to work properly. How can I change the doctype…
0
votes
1 answer

Setting data to view in GWT MVP

I have a GWT application where MVP pattern is followed. We have multiple views to show data on UI. We set the data to view via Activity. Something like this public class SomeActivityImpl extends AbstractActivity implements SomeView.Presenter { …
Sam
  • 2,352
  • 4
  • 32
  • 45
0
votes
2 answers

CachingActivityMapper seems not working

I use MVP pattern for GWT application. I have a filter view and search results view. If the search criteria is modified, search results are getting updated. But, the selected criteria lost when I refresh the browser. So I want to retain the search…
Sree
  • 921
  • 2
  • 12
  • 31
0
votes
1 answer

How to update the state in URL without Navigating it in GWT MVP

I am a GWT beginner. I wanted to bookmark the GWT application developed using MVP. I have a state where user can narrow down the search results by selecting search criteria on the page. If the user selects any criteria, search results will be…
Sree
  • 921
  • 2
  • 12
  • 31
0
votes
1 answer

Where is the data stored in a MVP framework

I am trying to create a simple Contacts application in MVP. I have a list of Contact objects fetched from the database and showing only the contact names in the View. When an user clicks on the contact name, I display the whole contact object.…
Blacklabel
  • 826
  • 1
  • 10
  • 19
0
votes
2 answers

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 is not calling the method in my…
SKM
  • 71
  • 1
  • 10
0
votes
1 answer

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 find a way to bind my presenters for each slot…
Brian
  • 79
  • 12
0
votes
3 answers

how to create a master page or a page which is in common to all the views using gwt mvp

Hi I am new to GWT MVP pattern. I am from asp.net background and currently I am working on GWT and I am asked to create a Master page which has the menu items which should be in common to all the views. Initially I created a sample mvp project using…
Saritha
  • 181
  • 17
0
votes
1 answer

GWT multiple Activities/Places with one Token

My Site has on the left a GWT-Tree. In the center is a GWT-TabBar. Both parts are implemented as Views/Activities/Places. I have two tokenizer: "m" for the tree and "t" for the tabs. If I visit one place (goTo()) only this place will be used to…
Marcel Jaeschke
  • 707
  • 7
  • 24
0
votes
3 answers

Presenter with swappable sub-presenters

Using GWT 2.4 with MVP, I have a presenter where the top portion can swap between a read-only presenter of a set of data or an editor for that data, depending on how you arrived at the page. Without using GWTP, how can I swap between those two…
Brett Slocum
  • 390
  • 1
  • 5
  • 21
0
votes
2 answers

GWT - Create something like MobileWebApp using GWTP

I am trying to create an application which will have different views for mobile, desktop and tablet. It is on the lines of MobileWebApp sample from GWT. I am looking at GWT MVP tutorial and have a basic app working. I was thinking if I should use…
blue01
  • 2,035
  • 2
  • 23
  • 38
1 2 3
8
9