Beispiel #1
0
 @Override
 public void onButtonClicked() {
   // Window.alert("This is now the activity here");
   // clientFactory.getPlaceController().goTo(new
   // HelloPlace("after table"));
   clientFactory.getPlaceController().goTo(new CellTableSortingPlace("sortingtable"));
 }
Beispiel #2
0
 @Override
 public void start(AcceptsOneWidget panel, EventBus eventBus) {
   // you can use here every view you want
   CellTableView cellTableView = clientFactory.getCellTableView();
   cellTableView.setName(name);
   cellTableView.setPresenter(this);
   panel.setWidget(cellTableView);
 }
Beispiel #3
0
 @Override
 public void goTo(Place place) {
   clientFactory.getPlaceController().goTo(place);
 }