| Auszug |
|---|
|
Nuclos layout overlay window: overlay, object generator, minimum size, insert update rule, dialog. |
Language: Deutsch · English
Layout overlay window
Overlay dialogs via the object generator – minimum size and combined insert/update rule.
| Status |
|---|
| colour | Blue |
|---|
| title | Application developer |
|---|
|
| Status |
|---|
| colour | Green |
|---|
| title | Updated: Jul 2026 |
|---|
|
| Status |
|---|
| colour | Grey |
|---|
| title | applies to Nuclos 4.2026.x |
|---|
|
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 |
|---|
|
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 |
|---|
|
@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
Object generator
Generation.
Open →