Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
waldo1001 committed Jul 5, 2024
2 parents 2b5ce48 + 0b43267 commit 691d6e8
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions snippets/page.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"",
"\tlayout",
"\t{",
"\t\tarea(content)",
"\t\tarea(Content)",
"\t\t{",
"\t\t\tgroup(StandardBanner)",
"\t\t\t{",
Expand Down Expand Up @@ -41,6 +41,7 @@
"",
"\t\t\tgroup(Step1)",
"\t\t\t{",
"\t\t\t\tShowCaption = false;",
"\t\t\t\tVisible = Step1Visible;",
"\t\t\t\tgroup(\"Welcome to ${2:PageName}\")",
"\t\t\t\t{",
Expand Down Expand Up @@ -74,6 +75,7 @@
"",
"\t\t\tgroup(Step3)",
"\t\t\t{",
"\t\t\t\tShowCaption = false;",
"\t\t\t\tVisible = Step3Visible;",
"\t\t\t\tgroup(Group23)",
"\t\t\t\t{",
Expand All @@ -94,7 +96,7 @@
"\t}",
"\tactions",
"\t{",
"\t\tarea(processing)",
"\t\tarea(Processing)",
"\t\t{",
"\t\t\taction(ActionBack)",
"\t\t\t{",
Expand All @@ -103,7 +105,7 @@
"\t\t\t\tEnabled = BackActionEnabled;",
"\t\t\t\tImage = PreviousRecord;",
"\t\t\t\tInFooterBar = true;",
"\t\t\t\ttrigger OnAction();",
"\t\t\t\ttrigger OnAction()",
"\t\t\t\tbegin",
"\t\t\t\t\tNextStep(true);",
"\t\t\t\tend;",
Expand All @@ -115,7 +117,7 @@
"\t\t\t\tEnabled = NextActionEnabled;",
"\t\t\t\tImage = NextRecord;",
"\t\t\t\tInFooterBar = true;",
"\t\t\t\ttrigger OnAction();",
"\t\t\t\ttrigger OnAction()",
"\t\t\t\tbegin",
"\t\t\t\t\tNextStep(false);",
"\t\t\t\tend;",
Expand All @@ -127,20 +129,20 @@
"\t\t\t\tEnabled = FinishActionEnabled;",
"\t\t\t\tImage = Approve;",
"\t\t\t\tInFooterBar = true;",
"\t\t\t\ttrigger OnAction();",
"\t\t\t\ttrigger OnAction()",
"\t\t\t\tbegin",
"\t\t\t\t\tFinishAction();",
"\t\t\t\tend;",
"\t\t\t}",
"\t\t}",
"\t}",
"",
"\ttrigger OnInit();",
"\ttrigger OnInit()",
"\tbegin",
"\t\tLoadTopBanners();",
"\tend;",
"",
"\ttrigger OnOpenPage();",
"\ttrigger OnOpenPage()",
"\tvar",
"\t\t${4:RecordVar}: Record ${3:TableName};",
"\tbegin",
Expand Down

0 comments on commit 691d6e8

Please sign in to comment.