Questions tagged [gwt-activities]

GWT 2.1 introduced a built-in framework for browser history management. The Activities and Places framework allows you to create bookmarkable URLs within your application, thus allowing the browser's back button and bookmarks to work as users expect.

GWT 2.1 introduced a built-in framework for browser history management. The Activities and Places framework allows you to create bookmarkable URLs within your application, thus allowing the browser's back button and bookmarks to work as users expect.

51 questions
0
votes
3 answers

How to achieve nested activities gwt

how to achieve nested activities in gwt. this is my use case. i am attaching an activity mapper and Activity manager for each view. ie root,screen1,innerscreen. but i can see only the view upto screen1, the innerscreen is not displaying. how to…
japkpc
  • 73
  • 7
0
votes
1 answer

Adding to GWT RootPanel or just setting the default view?

I have the following GWT classes: public class MyDefaultView extends Composite { // Uses UiBinder and just contains all the widgets for this view. } public class MyDefaultActivity extends AbstractActivity { @Inject private MyDefaultView…
user1768830
0
votes
1 answer

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 { private EventBus eventBus; private PlaceController…
user1768830
0
votes
1 answer

How to inject GWT Activity#start with a specific Widget?

I have the following parent container: public class ParentContainer extends Composite { // Contains a bunch of TextButtons (RedButton, GreenButton, etc.). private LayoutPanel buttonPanel; // When user clicks a TextButton inside the…
user1768830
0
votes
1 answer

GWT Codesplitting Integration: MVP and Activites/Places

Let's say you have a "display region" (AcceptsOneWidget) that contains a tabbed pane. Clicking a different tab (i.e., going from "fantastico" to "profile") results with totally new content being displayed inside the pane. This seems like a perfect…
Bantha Fodder
  • 1,242
  • 1
  • 11
  • 19
0
votes
1 answer

How to do code split in a typical GWT mvp project?

My app is a typical GWT application, it has a navigation bar, when click one bar item, the place will be changed and the app will find corresponding activity for that place(done in MasterActivityMapper), then call activity.start(). During the init…
Mike
  • 3,515
  • 10
  • 44
  • 67
1 2 3
4