Placing an entity Instance Name in the caption of an StandardEditor form

Hi

I am unable to establish how to use the instance name (or any variable for that matter) in the Caption of an Editor form.

Any guidance will be much appreciated.

Set custon windows caption in AfterShow.

@Subscribe
    public void onAfterShow(AfterShowEvent event) {
        this.getWindow().setCaption("My Custom Caption!");
    }
2 Likes

Perfect, thank you!