You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having an issue where I pass the PlaceManager from an inhered Presenter's constructor to it's super abstract Presenter constructor. Calls to revealPlace work from the inhered Presenter but not from the super Presenter.
The revealPlace methods is called without error, placeManager is fine (not null). But the address bar doesn't change and no other place events are triggered. Any ideas why this might be?
Using latest GWTP. My abstract Presenter is in another project/module.
public class AppPresenter extends AbstractAppPresenter...
{
public void onBind()
{
super.onBind();
placeManager.revealPlace(...); //works
}
}
public class AbstractAppPresenter extends Presenter...
{
public void onBind()
{
placeManager.revealPlace(...); //doesn't works
}
}
Thanks for your help
The text was updated successfully, but these errors were encountered:
I'm having an issue where I pass the PlaceManager from an inhered Presenter's constructor to it's super abstract Presenter constructor. Calls to revealPlace work from the inhered Presenter but not from the super Presenter.
The revealPlace methods is called without error, placeManager is fine (not null). But the address bar doesn't change and no other place events are triggered. Any ideas why this might be?
Using latest GWTP. My abstract Presenter is in another project/module.
public class AppPresenter extends AbstractAppPresenter...
{
public void onBind()
{
super.onBind();
placeManager.revealPlace(...); //works
}
}
public class AbstractAppPresenter extends Presenter...
{
public void onBind()
{
placeManager.revealPlace(...); //doesn't works
}
}
Thanks for your help
The text was updated successfully, but these errors were encountered: