formatted nav patterns

This commit is contained in:
christianbraeunlich 2022-02-05 18:19:26 +01:00
parent 38a19d75d8
commit 2fad891a77
59 changed files with 1403 additions and 1970 deletions

View file

@ -31,12 +31,14 @@ The **CardPage** type is most suitable for representing this kind of tables. In
In the **OnOpenPage** trigger, the following code should be added to insert a record when the user opens the page for the first time, if a record does not exist already.
OnOpenPage()
```al
OnOpenPage()
RESET;
IF NOT GET THEN BEGIN
INIT;
INSERT;
INIT;
INSERT;
END;
```
The following diagram describes the flow of the program, once the user tries to access the setup information. The user opens the page. If the record containing setup information already exists, then the page opens on the existing record. Else, a new empty record is created and the page opens on it.