Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Auszug
hiddentrue

Nuclos layout overlay window: overlay, object generator, minimum size, insert update rule, dialog.

globe with meridians Language: Deutsch · English

hammer and wrench Layout overlay window

Overlay dialogs via the object generator – minimum size and combined insert/update rule.

Status
colourPurple
titleHow-to
Status
colourBlue
titleApplication developer
Status
colourGreen
titleUpdated: Jul 2026
Status
colourGrey
titleapplies to Nuclos 4.2026.x

Panel
bgColor#F4F5F7

On this page

Inhalt
maxLevel2
minLevel2

What is an overlay?

An overlay is a window placed over the UI – e.g. for pop-ups or notifications, without disturbing the main content.

Configuration

In the object generator under display of the generated object, choose the matching constellation.

Overlay constellation in the object generator.

Layout design

For a dialog the minimum size is evaluated – best to use fixed values and let one row fill the remaining space.

Warnung
titleImportant

After adjusting the layout, save the object generator again – this analyses the layout and remembers the minimum size.

Finished overlay.

Server rule order

Before opening, the object generator rule runs. On OK in the overlay a combined insert/update rule must exist for the overlay object:

Codeblock
languagejava
@Rule(name="VerfahrenErstellen", description="VerfahrenErstellen")
public class VerfahrenErstellen implements InsertRule, UpdateRule {
    public void update(UpdateContext context) throws BusinessException {

        insertVerfahren(context, context.getBusinessObject(ObjektgeneratorVerfahren.class));

    }


    public void insert(InsertContext context) throws BusinessException {

        insertVerfahren(context, context.getBusinessObject(ObjektgeneratorVerfahren.class));

    }

Related pages

framed picture Layout


Masks.

Open →

gear Object generator


Generation.

Open →