0

I'm having a problem with my Errai GWT app which I get this error when the page tries to TransitionTo a page, say FormsPage:

No page with a widget type of com.mycompany.myproject.client.local.FormsPage exists

Even if the FormsPage is there in the package and there is no-compile time error (so it was able to locate the page) in:

TransitionTo<FormsPage> formsPage;

What could be the problem?

Charles
  • 50,943
  • 13
  • 104
  • 142
quarks
  • 33,478
  • 73
  • 290
  • 513

1 Answers1

0

I forgot the include @Page annotation in the "page" class.

So adding this on it resolved the issue.

quarks
  • 33,478
  • 73
  • 290
  • 513