profoundjs 7.20.4 → 7.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/auto-testing/static/test-runs/index.html +46 -0
  2. package/auto-testing/static/test-runs/script.js +477 -0
  3. package/auto-testing/static/test-runs/style.css +237 -0
  4. package/htdocs/profoundui/proddata/css/markdown.css +23 -0
  5. package/htdocs/profoundui/proddata/css/plogic.css +4976 -0
  6. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.eot +0 -0
  7. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.svg +276 -0
  8. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.ttf +0 -0
  9. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff +0 -0
  10. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff2 +0 -0
  11. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.eot +0 -0
  12. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.svg +301 -0
  13. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.ttf +0 -0
  14. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff +0 -0
  15. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff2 +0 -0
  16. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.eot +0 -0
  17. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.svg +281 -0
  18. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.ttf +0 -0
  19. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff +0 -0
  20. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff2 +0 -0
  21. package/htdocs/profoundui/proddata/fonts/material_icons.woff2 +0 -0
  22. package/htdocs/profoundui/proddata/js/atrium.js +188 -186
  23. package/htdocs/profoundui/proddata/js/designer.js +3242 -3237
  24. package/htdocs/profoundui/proddata/js/genie.js +2169 -2168
  25. package/htdocs/profoundui/proddata/js/plogic.grids.js +326 -0
  26. package/htdocs/profoundui/proddata/js/runtime.js +1133 -1133
  27. package/htdocs/profoundui/proddata/js/signon.js +101 -99
  28. package/htdocs/profoundui/userdata/html/atrium_login.html +4 -1
  29. package/package.json +3 -1
  30. package/profound.jse +1 -1
  31. package/setup/completeInstall.js +7 -0
  32. package/setup/config.js +4 -1
  33. package/setup/modules/environment/README.md +17 -0
  34. package/setup/modules/environment/atenvcmds.json +1283 -0
  35. package/setup/modules/environment/atenvir.json +1643 -0
  36. package/setup/modules/environment/atuserenvirdefaults.json +1789 -0
  37. package/setup/modules/puiscreens.json +283 -0
  38. package/setup/pjsdist.savf +0 -0
  39. package/setup/setup.js +10 -0
@@ -0,0 +1,1283 @@
1
+ {
2
+ "text": "",
3
+ "logic": {
4
+ "load records": {
5
+ "steps": [
6
+ {
7
+ "text": "Retrieve program parameters",
8
+ "answers": {
9
+ "plugin": "Program Data:retrieve program parameters",
10
+ "destination": "Into work variables",
11
+ "parameter": "wInstanceId",
12
+ "parameter_2": "wName",
13
+ "parameter_3": "wDesc",
14
+ "comment": ""
15
+ }
16
+ },
17
+ {
18
+ "text": "Set screen field(s)",
19
+ "answers": {
20
+ "plugin": "Program Data:set-screen-fields",
21
+ "screen": "mainScreen",
22
+ "source": "Specify each value individually",
23
+ "screen-values": {
24
+ "Header": "'Environment: ' + wName + ' - ' + wDesc",
25
+ "envid": "wInstanceId"
26
+ },
27
+ "comment": ""
28
+ }
29
+ },
30
+ {
31
+ "text": "Load all records",
32
+ "answers": {
33
+ "plugin": "Database:get-records",
34
+ "connection": "",
35
+ "tables": "ATENVCMDS",
36
+ "columns": "id,cmdseq,command,disabled,conterrs,chronology as chrontext",
37
+ "criteria": "envid = ?",
38
+ "parameter": "wInstanceId",
39
+ "add_order_by": true,
40
+ "order_by": "cmdseq",
41
+ "limit": "5000",
42
+ "skip": "",
43
+ "destination": "Grid",
44
+ "grid": "grid",
45
+ "comment": ""
46
+ }
47
+ },
48
+ {
49
+ "text": "Set \"A\" to \"Active\"",
50
+ "answers": {
51
+ "plugin": "Grids:change-records",
52
+ "grid": "grid",
53
+ "conditionally": true,
54
+ "field": "chrontext",
55
+ "type": "==",
56
+ "value": "'A'",
57
+ "and-or": "",
58
+ "field-values": {
59
+ "chrontext": "'After'"
60
+ },
61
+ "comment": ""
62
+ }
63
+ },
64
+ {
65
+ "text": "Set \"B\" to \"Before\"",
66
+ "answers": {
67
+ "plugin": "Grids:change-records",
68
+ "grid": "grid",
69
+ "conditionally": true,
70
+ "field": "chrontext",
71
+ "type": "==",
72
+ "value": "'B'",
73
+ "and-or": "",
74
+ "field-values": {
75
+ "chrontext": "'Before'"
76
+ },
77
+ "comment": ""
78
+ }
79
+ }
80
+ ]
81
+ },
82
+ "add button click": {
83
+ "steps": [
84
+ {
85
+ "text": "Show detail screen for adding a record",
86
+ "answers": {
87
+ "plugin": "Navigation:show-screen",
88
+ "screen": "detailScreen",
89
+ "populate": true,
90
+ "source": "Specify each value individually",
91
+ "screen-values": {
92
+ "idKey": "''",
93
+ "editMode": "false",
94
+ "dialogTitle": "'Add Record'",
95
+ "tsadded": "'0001-01-01-00.00.00.000000'",
96
+ "cmdseq": "0",
97
+ "command": "''",
98
+ "tslstchg": "'0001-01-01-00.00.00.000000'",
99
+ "chronology": "'A'",
100
+ "disabled": "0",
101
+ "conterrs": "0",
102
+ "tsdisable": "'0001-01-01-00.00.00.000000'",
103
+ "envid": "mainScreen[\"envid\"]"
104
+ },
105
+ "comment": ""
106
+ }
107
+ }
108
+ ]
109
+ },
110
+ "edit icon click": {
111
+ "steps": [
112
+ {
113
+ "text": "Retrieve record",
114
+ "answers": {
115
+ "plugin": "Database:get-record",
116
+ "connection": "",
117
+ "tables": "ATENVCMDS",
118
+ "columns": "id,envid,cmdseq,command,chronology,disabled,conterrs,tsadded,adduser,tslstchg,upduser,tsdisable,disuser",
119
+ "criteria": "id = ?",
120
+ "parameter": "activeGridRecord[\"id\"]",
121
+ "destination": "Screen",
122
+ "screen": "detailScreen",
123
+ "comment": ""
124
+ }
125
+ },
126
+ {
127
+ "text": "Show edit window",
128
+ "answers": {
129
+ "plugin": "Navigation:show-screen",
130
+ "screen": "detailScreen",
131
+ "populate": true,
132
+ "source": "Specify each value individually",
133
+ "screen-values": {
134
+ "dialogTitle": "'Edit Record'",
135
+ "editMode": "true",
136
+ "idKey": "activeGridRecord[\"id\"]"
137
+ }
138
+ }
139
+ }
140
+ ]
141
+ },
142
+ "delete icon click": {
143
+ "steps": [
144
+ {
145
+ "text": "Ask to confirm",
146
+ "answers": {
147
+ "plugin": "Navigation:show-message-box",
148
+ "title": "Delete Record",
149
+ "message": "Are you sure?",
150
+ "icon": "question",
151
+ "button1": "Yes",
152
+ "button2": "No",
153
+ "button3": "",
154
+ "button4": "",
155
+ "button5": "",
156
+ "capture_response": true,
157
+ "destination": "Work variable",
158
+ "work_variable": "sure"
159
+ }
160
+ },
161
+ {
162
+ "text": "If sure",
163
+ "answers": {
164
+ "plugin": "Conditions:comparison",
165
+ "variable": "sure",
166
+ "type": "==",
167
+ "value": "'Yes'",
168
+ "and-or": ""
169
+ },
170
+ "isStructureStart": true,
171
+ "collapsed": false
172
+ },
173
+ {
174
+ "text": "Delete record",
175
+ "answers": {
176
+ "plugin": "Database:delete-records",
177
+ "connection": "",
178
+ "table": "ATENVCMDS",
179
+ "criteria": "id = ?",
180
+ "parameter": "activeGridRecord[\"id\"]",
181
+ "results": "",
182
+ "comment": ""
183
+ }
184
+ },
185
+ {
186
+ "text": "Any problems?",
187
+ "answers": {
188
+ "plugin": "Conditions:success",
189
+ "not": true
190
+ },
191
+ "isStructureStart": true,
192
+ "collapsed": false
193
+ },
194
+ {
195
+ "text": "Show message",
196
+ "answers": {
197
+ "plugin": "Navigation:show-message-box",
198
+ "title": "Error",
199
+ "message": "Record could not be deleted.\r\n<br/>\r\n<br/>\r\n${_error.message}",
200
+ "icon": "error",
201
+ "button1": "",
202
+ "button2": "",
203
+ "button3": "",
204
+ "button4": "",
205
+ "button5": "",
206
+ "capture_response": false
207
+ }
208
+ },
209
+ {
210
+ "isStructureEnd": true
211
+ },
212
+ {
213
+ "isStructureEnd": true
214
+ }
215
+ ]
216
+ },
217
+ "save button click": {
218
+ "steps": [
219
+ {
220
+ "text": "Custom Node.js",
221
+ "answers": {
222
+ "plugin": "Custom:code",
223
+ "custom-code": "debugger;",
224
+ "comment": ""
225
+ },
226
+ "disabled": true
227
+ },
228
+ {
229
+ "text": "New Record?",
230
+ "answers": {
231
+ "plugin": "Conditions:comparison",
232
+ "variable": "detailScreen[\"editMode\"]",
233
+ "type": "==",
234
+ "value": "false",
235
+ "and-or": "",
236
+ "comment": ""
237
+ },
238
+ "isStructureStart": true,
239
+ "collapsed": false
240
+ },
241
+ {
242
+ "text": "Generate UUID",
243
+ "answers": {
244
+ "plugin": "Program Data:set-work-variable",
245
+ "work-variable-values": {
246
+ "UUID": "pjs.newUUID()"
247
+ },
248
+ "comment": "Generate UUID"
249
+ }
250
+ },
251
+ {
252
+ "text": "Set Screen Fields",
253
+ "answers": {
254
+ "plugin": "Program Data:set-screen-fields",
255
+ "screen": "detailScreen",
256
+ "source": "Specify each value individually",
257
+ "screen-values": {
258
+ "idKey": "UUID",
259
+ "tsadded": "pjs.timestamp()",
260
+ "tslstchg": "'0001-01-01 00:00:00.000000'",
261
+ "id": "UUID",
262
+ "envid": "mainScreen[\"envid\"]"
263
+ },
264
+ "comment": ""
265
+ }
266
+ },
267
+ {
268
+ "isStructureEnd": true
269
+ },
270
+ {
271
+ "text": "Otherwise",
272
+ "answers": {
273
+ "plugin": "Conditions:else",
274
+ "comment": ""
275
+ },
276
+ "isStructureStart": true,
277
+ "collapsed": false
278
+ },
279
+ {
280
+ "text": "Set changed by User",
281
+ "answers": {
282
+ "plugin": "Program Data:set-screen-fields",
283
+ "screen": "detailScreen",
284
+ "source": "Specify each value individually",
285
+ "screen-values": {
286
+ "tsadded": "pjs.timestamp()",
287
+ "upduser": "pjs.getUser()",
288
+ "tslstchg": "pjs.timestamp()",
289
+ "envid": "mainScreen[\"envid\"]"
290
+ },
291
+ "comment": ""
292
+ }
293
+ },
294
+ {
295
+ "isStructureEnd": true
296
+ },
297
+ {
298
+ "text": "is Disabled?",
299
+ "answers": {
300
+ "plugin": "Conditions:comparison",
301
+ "variable": "detailScreen[\"disabled\"]",
302
+ "type": "==",
303
+ "value": "1",
304
+ "and-or": "",
305
+ "comment": ""
306
+ },
307
+ "isStructureStart": true,
308
+ "collapsed": false
309
+ },
310
+ {
311
+ "text": "Set disabled info",
312
+ "answers": {
313
+ "plugin": "Program Data:set-screen-fields",
314
+ "screen": "detailScreen",
315
+ "source": "Specify each value individually",
316
+ "screen-values": {
317
+ "tsdisable": "pjs.timestamp()",
318
+ "disuser": "pjs.getUser()"
319
+ },
320
+ "comment": ""
321
+ }
322
+ },
323
+ {
324
+ "isStructureEnd": true
325
+ },
326
+ {
327
+ "text": "Otherwise",
328
+ "answers": {
329
+ "plugin": "Conditions:else",
330
+ "comment": ""
331
+ },
332
+ "isStructureStart": true,
333
+ "collapsed": false
334
+ },
335
+ {
336
+ "text": "Clear disabled info",
337
+ "answers": {
338
+ "plugin": "Program Data:set-screen-fields",
339
+ "screen": "detailScreen",
340
+ "source": "Specify each value individually",
341
+ "screen-values": {
342
+ "tsdisable": "'0001-01-01 00:00:00.000000'",
343
+ "disuser": "''"
344
+ },
345
+ "comment": ""
346
+ }
347
+ },
348
+ {
349
+ "isStructureEnd": true
350
+ },
351
+ {
352
+ "text": "Update/insert record",
353
+ "answers": {
354
+ "plugin": "Database:update-insert-record",
355
+ "connection": "",
356
+ "table": "ATENVCMDS",
357
+ "criteria": "id = ?",
358
+ "parameter": "detailScreen[\"idKey\"]",
359
+ "record_source": "From a screen",
360
+ "screen": "detailScreen",
361
+ "results": "",
362
+ "comment": ""
363
+ }
364
+ },
365
+ {
366
+ "text": "Any problems?",
367
+ "answers": {
368
+ "plugin": "Conditions:success",
369
+ "not": true
370
+ },
371
+ "isStructureStart": true,
372
+ "collapsed": false
373
+ },
374
+ {
375
+ "text": "Show message",
376
+ "answers": {
377
+ "plugin": "Navigation:show-message-box",
378
+ "title": "Error",
379
+ "message": "Record could not be saved.\r\n<br/>\r\n<br/>\r\n${_error.message}",
380
+ "icon": "error",
381
+ "button1": "",
382
+ "button2": "",
383
+ "button3": "",
384
+ "button4": "",
385
+ "button5": "",
386
+ "capture_response": false
387
+ }
388
+ },
389
+ {
390
+ "text": "Stop",
391
+ "answers": {
392
+ "plugin": "Navigation:terminate-routine"
393
+ }
394
+ },
395
+ {
396
+ "isStructureEnd": true
397
+ },
398
+ {
399
+ "text": "Go back",
400
+ "answers": {
401
+ "plugin": "Navigation:show-screen",
402
+ "screen": "mainScreen",
403
+ "populate": false
404
+ }
405
+ }
406
+ ]
407
+ },
408
+ "cancel button click": {
409
+ "steps": [
410
+ {
411
+ "text": "Go back",
412
+ "answers": {
413
+ "plugin": "Navigation:show-screen",
414
+ "screen": "mainScreen",
415
+ "populate": false
416
+ }
417
+ }
418
+ ]
419
+ },
420
+ "cancel button click 2": {
421
+ "steps": [
422
+ {
423
+ "text": "Show previous screen",
424
+ "answers": {
425
+ "plugin": "Navigation:exit-program",
426
+ "comment": ""
427
+ }
428
+ }
429
+ ]
430
+ }
431
+ },
432
+ "formats": [
433
+ {
434
+ "screen": {
435
+ "record format name": "mainScreen",
436
+ "initial routine": {
437
+ "routine": "load records",
438
+ "designValue": "load records"
439
+ },
440
+ "description": "List or Search Records",
441
+ "css class": "blueprint-checkbox-no-label",
442
+ "external javascript": "\\profoundui\\proddata\\js\\plogic.grids.js",
443
+ "external css": "\\profoundui\\proddata\\css\\plogic.css"
444
+ },
445
+ "items": [
446
+ {
447
+ "id": "Layout1_copy",
448
+ "field type": "layout",
449
+ "css class": "plogic--panel--wide",
450
+ "left": "30px",
451
+ "top": "25px",
452
+ "template": "css panel",
453
+ "header text": {
454
+ "fieldName": "Header",
455
+ "dataLength": "50",
456
+ "trimLeading": "false",
457
+ "trimTrailing": "true",
458
+ "blankFill": "false",
459
+ "rjZeroFill": "false",
460
+ "dataType": "char",
461
+ "formatting": "Text",
462
+ "textTransform": "none",
463
+ "designValue": "[Header]"
464
+ },
465
+ "header theme": "blueprint-white-header",
466
+ "body theme": "blueprint-white-body",
467
+ "height": "60px",
468
+ "width": "180px",
469
+ "z index": "8",
470
+ "css class 2": "blueprint-defaults"
471
+ },
472
+ {
473
+ "id": "GraphicButton1",
474
+ "field type": "graphic button",
475
+ "css class": "blueprint-button",
476
+ "value": "Add",
477
+ "left": "30px",
478
+ "top": "95px",
479
+ "width": "100px",
480
+ "icon position": "left",
481
+ "css class 2": "blueprint-alt-defaults",
482
+ "css class 3": "no-icon",
483
+ "height": "25px",
484
+ "onclick": {
485
+ "routine": "add button click",
486
+ "designValue": "add button click"
487
+ },
488
+ "icon": "material:add"
489
+ },
490
+ {
491
+ "id": "GraphicButton2",
492
+ "field type": "graphic button",
493
+ "css class": "pui-solid-button-no",
494
+ "value": "Back",
495
+ "left": "140px",
496
+ "top": "95px",
497
+ "width": "100px",
498
+ "icon position": "left",
499
+ "css class 2": "blueprint-defaults",
500
+ "icon": "material:keyboard_backspace",
501
+ "height": "25px",
502
+ "onclick": {
503
+ "routine": "cancel button click 2",
504
+ "designValue": "cancel button click 2"
505
+ }
506
+ },
507
+ {
508
+ "id": "filterAll",
509
+ "field type": "textbox",
510
+ "css class": "blueprint-defaults",
511
+ "placeholder": "Filter All",
512
+ "float placeholder": "true",
513
+ "left": "30px",
514
+ "top": "130px",
515
+ "height": "25px",
516
+ "width": "1050px",
517
+ "css class 2": "blueprint-textbox",
518
+ "onkeyup": "plogic.grid.setFilter('Grid', this)"
519
+ },
520
+ {
521
+ "id": "envid",
522
+ "field type": "output field",
523
+ "css class": "blueprint-output-field",
524
+ "value": {
525
+ "fieldName": "envid",
526
+ "refField": "ENVID ATENVCMDS",
527
+ "trimLeading": "false",
528
+ "trimTrailing": "true",
529
+ "blankFill": "false",
530
+ "rjZeroFill": "false",
531
+ "dataType": "reference",
532
+ "formatting": "Text",
533
+ "textTransform": "none",
534
+ "designValue": "[envid]"
535
+ },
536
+ "left": "1090px",
537
+ "top": "185px",
538
+ "css class 2": "blueprint-constant",
539
+ "visibility": "hidden"
540
+ },
541
+ {
542
+ "id": "Grid",
543
+ "field type": "grid",
544
+ "css class": "blueprint-grid",
545
+ "left": "30px",
546
+ "top": "160px",
547
+ "number of rows": "15",
548
+ "number of columns": "6",
549
+ "column headings": "Actions,Command Sequence,Command to Execute,Chronology,Disabled,Continue On-Errors",
550
+ "column widths": "80,180,396,113,93,186",
551
+ "header height": "35",
552
+ "row height": "33",
553
+ "height": "497px",
554
+ "width": "1049px",
555
+ "border color": "var(--color--grid-border)",
556
+ "record format name": "grid",
557
+ "border width": "1px",
558
+ "sortable columns": "true",
559
+ "movable columns": "true",
560
+ "persist state": "true",
561
+ "show page number": "false",
562
+ "find option": "true",
563
+ "filter option": "true",
564
+ "hide columns option": "true",
565
+ "reset option": "true",
566
+ "row selection": "single",
567
+ "description": "Grid of Records",
568
+ "subfile record number": {
569
+ "fieldName": "topRecordNumber",
570
+ "dataLength": "5",
571
+ "decPos": "0",
572
+ "curSym": "",
573
+ "dataType": "zoned",
574
+ "formatting": "Number",
575
+ "negNum": "-999.00",
576
+ "units": ""
577
+ },
578
+ "position at top": "true",
579
+ "subfile return rrn": {
580
+ "fieldName": "topRecordNumber",
581
+ "dataLength": "5",
582
+ "decPos": "0",
583
+ "curSym": "",
584
+ "dataType": "zoned",
585
+ "formatting": "Number",
586
+ "negNum": "-999.00",
587
+ "units": ""
588
+ },
589
+ "resizable columns": "true",
590
+ "export with headings": "true",
591
+ "xlsx export": "true",
592
+ "show bar": "true",
593
+ "scrollbar": "sliding",
594
+ "scroll tool tip": "row number",
595
+ "export option": "true",
596
+ "export only visible columns": "true"
597
+ },
598
+ {
599
+ "id": "EditIcon",
600
+ "field type": "icon",
601
+ "left": "10px",
602
+ "top": "0px",
603
+ "icon": "fontAwesome-solid:edit",
604
+ "cursor": "pointer",
605
+ "tool tip": "Edit record...",
606
+ "onclick": {
607
+ "routine": "edit icon click",
608
+ "designValue": "edit icon click"
609
+ },
610
+ "css class": "color-primary",
611
+ "user defined data": {
612
+ "fieldName": "id",
613
+ "refField": "id ATENVCMDS",
614
+ "trimLeading": "false",
615
+ "trimTrailing": "true",
616
+ "blankFill": "false",
617
+ "rjZeroFill": "false",
618
+ "dataType": "reference",
619
+ "formatting": "Text",
620
+ "textTransform": "none"
621
+ },
622
+ "grid": "Grid",
623
+ "column": "0"
624
+ },
625
+ {
626
+ "id": "DeleteIcon",
627
+ "field type": "icon",
628
+ "left": "50px",
629
+ "top": "0px",
630
+ "icon": "material:delete_forever",
631
+ "cursor": "pointer",
632
+ "tool tip": "Delete record...",
633
+ "onclick": {
634
+ "routine": "delete icon click",
635
+ "designValue": "delete icon click"
636
+ },
637
+ "css class": "color-red",
638
+ "user defined data": {
639
+ "fieldName": "id",
640
+ "refField": "id ATENVCMDS",
641
+ "trimLeading": "false",
642
+ "trimTrailing": "true",
643
+ "blankFill": "false",
644
+ "rjZeroFill": "false",
645
+ "dataType": "reference",
646
+ "formatting": "Text",
647
+ "textTransform": "none"
648
+ },
649
+ "grid": "Grid",
650
+ "column": "0"
651
+ },
652
+ {
653
+ "field type": "output field",
654
+ "css class": "outputField",
655
+ "css class 2": "blueprint-defaults",
656
+ "value": {
657
+ "fieldName": "cmdseq",
658
+ "refField": "CMDSEQ ATENVCMDS",
659
+ "numSep": "false",
660
+ "zeroBalance": "false",
661
+ "numBlankFill": "false",
662
+ "zeroFill": "false",
663
+ "noExtraSpaces": "false",
664
+ "curSym": "",
665
+ "dataType": "reference",
666
+ "formatting": "Number",
667
+ "negNum": "-999.00",
668
+ "units": "",
669
+ "designValue": "[cmdseq]"
670
+ },
671
+ "top": "5px",
672
+ "left": "10px",
673
+ "id": "cmdseq",
674
+ "css class 3": "blueprint-output-field",
675
+ "grid": "Grid",
676
+ "column": "1"
677
+ },
678
+ {
679
+ "field type": "output field",
680
+ "css class": "outputField",
681
+ "css class 2": "blueprint-defaults",
682
+ "value": {
683
+ "fieldName": "command",
684
+ "refField": "COMMAND ATENVCMDS",
685
+ "trimLeading": "false",
686
+ "trimTrailing": "true",
687
+ "blankFill": "false",
688
+ "rjZeroFill": "false",
689
+ "dataType": "reference",
690
+ "formatting": "Text",
691
+ "textTransform": "none",
692
+ "designValue": "[command]"
693
+ },
694
+ "top": "5px",
695
+ "left": "10px",
696
+ "id": "command",
697
+ "css class 3": "blueprint-output-field",
698
+ "grid": "Grid",
699
+ "column": "2"
700
+ },
701
+ {
702
+ "id": "OutputField2",
703
+ "field type": "output field",
704
+ "css class": "blueprint-output-field",
705
+ "value": {
706
+ "fieldName": "chronology",
707
+ "refField": "CHRONOLOGY ATENVCMDS",
708
+ "trimLeading": "false",
709
+ "trimTrailing": "true",
710
+ "blankFill": "false",
711
+ "rjZeroFill": "false",
712
+ "dataType": "reference",
713
+ "formatting": "Text",
714
+ "textTransform": "none",
715
+ "designValue": "[chronology]"
716
+ },
717
+ "left": "285px",
718
+ "top": "5px",
719
+ "css class 2": "blueprint-constant",
720
+ "visibility": "hidden",
721
+ "grid": "Grid",
722
+ "column": "2"
723
+ },
724
+ {
725
+ "id": "OutputField1",
726
+ "field type": "output field",
727
+ "css class": "outputField",
728
+ "value": {
729
+ "fieldName": "chrontext",
730
+ "dataLength": "6",
731
+ "trimLeading": "false",
732
+ "trimTrailing": "true",
733
+ "blankFill": "false",
734
+ "rjZeroFill": "false",
735
+ "dataType": "char",
736
+ "formatting": "Text",
737
+ "textTransform": "none",
738
+ "designValue": "[chrontext]"
739
+ },
740
+ "left": "calc(50% - 44px)",
741
+ "top": "calc(50% - 11px)",
742
+ "css class 2": "blueprint-defaults",
743
+ "text align": "center",
744
+ "css class 3": "blueprint-output-field",
745
+ "grid": "Grid",
746
+ "column": "3"
747
+ },
748
+ {
749
+ "id": "disabled",
750
+ "field type": "checkbox",
751
+ "css class": "blueprint-checkbox-no-label",
752
+ "value": {
753
+ "fieldName": "disabled",
754
+ "refField": "DISABLED ATENVCMDS",
755
+ "trimLeading": "false",
756
+ "trimTrailing": "true",
757
+ "blankFill": "false",
758
+ "rjZeroFill": "false",
759
+ "dataType": "reference",
760
+ "formatting": "Text",
761
+ "textTransform": "none",
762
+ "designValue": "[disabled]"
763
+ },
764
+ "left": "30px",
765
+ "top": "5px",
766
+ "label": "Checkbox",
767
+ "checked value": "1",
768
+ "unchecked value": "0",
769
+ "disabled": "true",
770
+ "grid": "Grid",
771
+ "column": "4"
772
+ },
773
+ {
774
+ "id": "continueonerrors",
775
+ "field type": "checkbox",
776
+ "css class": "blueprint-checkbox-no-label",
777
+ "value": {
778
+ "fieldName": "conterrs",
779
+ "refField": "CONTERRS ATENVCMDS",
780
+ "trimLeading": "false",
781
+ "trimTrailing": "true",
782
+ "blankFill": "false",
783
+ "rjZeroFill": "false",
784
+ "dataType": "reference",
785
+ "formatting": "Text",
786
+ "textTransform": "none",
787
+ "designValue": "[conterrs]"
788
+ },
789
+ "left": "75px",
790
+ "top": "5px",
791
+ "label": "Checkbox",
792
+ "checked value": "1",
793
+ "unchecked value": "0",
794
+ "disabled": "true",
795
+ "grid": "Grid",
796
+ "column": "5"
797
+ }
798
+ ]
799
+ },
800
+ {
801
+ "screen": {
802
+ "record format name": "detailScreen",
803
+ "description": "Add / Edit Records",
804
+ "user defined data": {
805
+ "fieldName": "idKey",
806
+ "refField": "ID ATENVCMDS",
807
+ "trimLeading": "false",
808
+ "trimTrailing": "true",
809
+ "blankFill": "false",
810
+ "rjZeroFill": "false",
811
+ "dataType": "reference",
812
+ "formatting": "Text",
813
+ "textTransform": "none"
814
+ },
815
+ "user defined data 2": {
816
+ "fieldName": "editMode",
817
+ "customTrue": "",
818
+ "customFalse": "",
819
+ "dataType": "indicator",
820
+ "formatting": "Indicator",
821
+ "indFormat": "true / false"
822
+ },
823
+ "show as window": "true",
824
+ "center window": "true",
825
+ "external css": "\\profoundui\\proddata\\css\\plogic.css"
826
+ },
827
+ "items": [
828
+ {
829
+ "id": "DetailPanel",
830
+ "field type": "layout",
831
+ "template": "css panel",
832
+ "header height": "45px",
833
+ "left": "35px",
834
+ "top": "35px",
835
+ "height": "325px",
836
+ "header theme": "blueprint-header",
837
+ "body theme": "blueprint-body",
838
+ "z index": "9",
839
+ "css class": "plogic--panel--wide",
840
+ "css class 2": "info",
841
+ "header text": {
842
+ "fieldName": "dialogTitle",
843
+ "trimLeading": "false",
844
+ "trimTrailing": "true",
845
+ "blankFill": "false",
846
+ "rjZeroFill": "false",
847
+ "dataType": "string",
848
+ "formatting": "Text",
849
+ "textTransform": "capitalize",
850
+ "designValue": "[dialogTitle]"
851
+ },
852
+ "width": "886px"
853
+ },
854
+ {
855
+ "field type": "textbox",
856
+ "float placeholder": "false",
857
+ "allow field exit": "true",
858
+ "width": "145px",
859
+ "css class": "blueprint-input",
860
+ "value": {
861
+ "fieldName": "tsadded",
862
+ "refField": "TSADDED ATENVCMDS",
863
+ "dataType": "reference",
864
+ "formatting": "Time Stamp",
865
+ "timeStampFormat": "m/d/y g:i A",
866
+ "locale": "en_US",
867
+ "designValue": "[tsadded]"
868
+ },
869
+ "top": "5px",
870
+ "left": "880px",
871
+ "id": "tsadded",
872
+ "visibility": "hidden",
873
+ "layout": "DetailPanel",
874
+ "container": "1"
875
+ },
876
+ {
877
+ "field type": "textbox",
878
+ "float placeholder": "false",
879
+ "allow field exit": "true",
880
+ "width": "125px",
881
+ "css class": "blueprint-defaults",
882
+ "value": {
883
+ "fieldName": "cmdseq",
884
+ "refField": "CMDSEQ ATENVCMDS",
885
+ "numSep": "false",
886
+ "zeroBalance": "false",
887
+ "numBlankFill": "false",
888
+ "zeroFill": "false",
889
+ "noExtraSpaces": "false",
890
+ "curSym": "",
891
+ "dataType": "reference",
892
+ "formatting": "Number",
893
+ "negNum": "-999.00",
894
+ "units": "",
895
+ "designValue": "[cmdseq]"
896
+ },
897
+ "top": "13px",
898
+ "left": "213px",
899
+ "id": "commandsequence",
900
+ "css class 2": "blueprint-textbox",
901
+ "required": "true",
902
+ "layout": "DetailPanel",
903
+ "container": "1"
904
+ },
905
+ {
906
+ "id": "commandsequence_label",
907
+ "field type": "output field",
908
+ "css class": "outputField",
909
+ "value": "Command Sequence",
910
+ "left": "25px",
911
+ "top": "15px",
912
+ "css class 2": "blueprint-defaults",
913
+ "width": "175px",
914
+ "css class 3": "blueprint-output-field",
915
+ "text align": "right",
916
+ "layout": "DetailPanel",
917
+ "container": "1"
918
+ },
919
+ {
920
+ "field type": "textbox",
921
+ "float placeholder": "false",
922
+ "allow field exit": "true",
923
+ "width": "140px",
924
+ "css class": "blueprint-input",
925
+ "value": {
926
+ "fieldName": "upduser",
927
+ "refField": "UPDUSER ATENVCMDS",
928
+ "trimLeading": "false",
929
+ "trimTrailing": "true",
930
+ "blankFill": "false",
931
+ "rjZeroFill": "false",
932
+ "dataType": "reference",
933
+ "formatting": "Text",
934
+ "textTransform": "none",
935
+ "designValue": "[upduser]"
936
+ },
937
+ "top": "35px",
938
+ "left": "880px",
939
+ "id": "addedbyuser",
940
+ "visibility": "hidden",
941
+ "layout": "DetailPanel",
942
+ "container": "1"
943
+ },
944
+ {
945
+ "field type": "textbox",
946
+ "float placeholder": "false",
947
+ "allow field exit": "true",
948
+ "width": "540px",
949
+ "css class": "blueprint-defaults",
950
+ "value": {
951
+ "fieldName": "command",
952
+ "refField": "command ATENVCMDS",
953
+ "trimLeading": "false",
954
+ "trimTrailing": "true",
955
+ "blankFill": "false",
956
+ "rjZeroFill": "false",
957
+ "dataType": "reference",
958
+ "formatting": "Text",
959
+ "textTransform": "none",
960
+ "designValue": "[command]"
961
+ },
962
+ "top": "45px",
963
+ "left": "213px",
964
+ "id": "command",
965
+ "css class 2": "blueprint-textbox",
966
+ "required": "true",
967
+ "layout": "DetailPanel",
968
+ "container": "1"
969
+ },
970
+ {
971
+ "id": "command_label",
972
+ "field type": "output field",
973
+ "css class": "outputField",
974
+ "value": "Command to Execute",
975
+ "left": "25px",
976
+ "top": "47px",
977
+ "css class 2": "blueprint-defaults",
978
+ "width": "175px",
979
+ "css class 3": "blueprint-output-field",
980
+ "text align": "right",
981
+ "layout": "DetailPanel",
982
+ "container": "1"
983
+ },
984
+ {
985
+ "field type": "textbox",
986
+ "float placeholder": "false",
987
+ "allow field exit": "true",
988
+ "width": "135px",
989
+ "css class": "blueprint-input",
990
+ "value": {
991
+ "fieldName": "tslstchg",
992
+ "refField": "TSLSTCHG ATENVCMDS",
993
+ "dataType": "reference",
994
+ "formatting": "Time Stamp",
995
+ "timeStampFormat": "m/d/y g:i A",
996
+ "locale": "en_US",
997
+ "designValue": "[tslstchg]"
998
+ },
999
+ "top": "65px",
1000
+ "left": "880px",
1001
+ "id": "tslastchange",
1002
+ "visibility": "hidden",
1003
+ "layout": "DetailPanel",
1004
+ "container": "1"
1005
+ },
1006
+ {
1007
+ "id": "SelectBox1",
1008
+ "field type": "select box",
1009
+ "css class": "blueprint-select-box",
1010
+ "value": {
1011
+ "fieldName": "chronology",
1012
+ "dataLength": "1",
1013
+ "trimLeading": "false",
1014
+ "trimTrailing": "true",
1015
+ "blankFill": "false",
1016
+ "rjZeroFill": "false",
1017
+ "dataType": "char",
1018
+ "formatting": "Text",
1019
+ "textTransform": "none",
1020
+ "designValue": "[chronology]"
1021
+ },
1022
+ "left": "213px",
1023
+ "top": "80px",
1024
+ "choices": "After,Before",
1025
+ "width": "150px",
1026
+ "choice values": "A,B",
1027
+ "css class 2": "blueprint-defaults",
1028
+ "layout": "DetailPanel",
1029
+ "container": "1"
1030
+ },
1031
+ {
1032
+ "id": "chronology_label",
1033
+ "field type": "output field",
1034
+ "css class": "outputField",
1035
+ "value": "Command Chronology",
1036
+ "left": "25px",
1037
+ "top": "83px",
1038
+ "css class 2": "blueprint-defaults",
1039
+ "width": "175px",
1040
+ "css class 3": "blueprint-output-field",
1041
+ "text align": "right",
1042
+ "layout": "DetailPanel",
1043
+ "container": "1"
1044
+ },
1045
+ {
1046
+ "field type": "textbox",
1047
+ "float placeholder": "false",
1048
+ "allow field exit": "true",
1049
+ "width": "135px",
1050
+ "css class": "blueprint-input",
1051
+ "value": {
1052
+ "fieldName": "upduser",
1053
+ "refField": "UPDUSER ATENVCMDS",
1054
+ "trimLeading": "false",
1055
+ "trimTrailing": "true",
1056
+ "blankFill": "false",
1057
+ "rjZeroFill": "false",
1058
+ "dataType": "reference",
1059
+ "formatting": "Text",
1060
+ "textTransform": "none",
1061
+ "designValue": "[upduser]"
1062
+ },
1063
+ "top": "95px",
1064
+ "left": "880px",
1065
+ "id": "lastchangeuser",
1066
+ "visibility": "hidden",
1067
+ "layout": "DetailPanel",
1068
+ "container": "1"
1069
+ },
1070
+ {
1071
+ "id": "Checkbox1",
1072
+ "field type": "checkbox",
1073
+ "css class": "blueprint-checkbox-no-label",
1074
+ "value": {
1075
+ "fieldName": "disabled",
1076
+ "refField": "DISABLED ATENVCMDS",
1077
+ "trimLeading": "false",
1078
+ "trimTrailing": "true",
1079
+ "blankFill": "false",
1080
+ "rjZeroFill": "false",
1081
+ "dataType": "reference",
1082
+ "formatting": "Text",
1083
+ "textTransform": "none",
1084
+ "designValue": "[disabled]"
1085
+ },
1086
+ "left": "213px",
1087
+ "top": "110px",
1088
+ "label": "Checkbox",
1089
+ "checked value": "1",
1090
+ "unchecked value": "0",
1091
+ "layout": "DetailPanel",
1092
+ "container": "1"
1093
+ },
1094
+ {
1095
+ "id": "disabled_label",
1096
+ "field type": "output field",
1097
+ "css class": "outputField",
1098
+ "value": "Disabled",
1099
+ "left": "25px",
1100
+ "top": "112px",
1101
+ "css class 2": "blueprint-defaults",
1102
+ "width": "175px",
1103
+ "css class 3": "blueprint-output-field",
1104
+ "text align": "right",
1105
+ "layout": "DetailPanel",
1106
+ "container": "1"
1107
+ },
1108
+ {
1109
+ "field type": "textbox",
1110
+ "float placeholder": "false",
1111
+ "allow field exit": "true",
1112
+ "width": "125px",
1113
+ "css class": "blueprint-input",
1114
+ "value": {
1115
+ "fieldName": "disuser",
1116
+ "refField": "DISUSER ATENVCMDS",
1117
+ "trimLeading": "false",
1118
+ "trimTrailing": "true",
1119
+ "blankFill": "false",
1120
+ "rjZeroFill": "false",
1121
+ "dataType": "reference",
1122
+ "formatting": "Text",
1123
+ "textTransform": "none",
1124
+ "designValue": "[disuser]"
1125
+ },
1126
+ "top": "130px",
1127
+ "left": "885px",
1128
+ "id": "disabledbyuser",
1129
+ "visibility": "hidden",
1130
+ "layout": "DetailPanel",
1131
+ "container": "1"
1132
+ },
1133
+ {
1134
+ "id": "Checkbox2",
1135
+ "field type": "checkbox",
1136
+ "css class": "blueprint-checkbox-no-label",
1137
+ "value": {
1138
+ "fieldName": "conterrs",
1139
+ "refField": "CONTERRS ATENVCMDS",
1140
+ "trimLeading": "false",
1141
+ "trimTrailing": "true",
1142
+ "blankFill": "false",
1143
+ "rjZeroFill": "false",
1144
+ "dataType": "reference",
1145
+ "formatting": "Text",
1146
+ "textTransform": "none",
1147
+ "designValue": "[conterrs]"
1148
+ },
1149
+ "left": "213px",
1150
+ "top": "140px",
1151
+ "label": "Checkbox",
1152
+ "checked value": "1",
1153
+ "unchecked value": "0",
1154
+ "layout": "DetailPanel",
1155
+ "container": "1"
1156
+ },
1157
+ {
1158
+ "id": "OutputField1",
1159
+ "field type": "output field",
1160
+ "css class": "blueprint-output-field",
1161
+ "value": {
1162
+ "fieldName": "id",
1163
+ "designValue": "[id]",
1164
+ "refField": "ID ATENVCMDS",
1165
+ "dataType": "reference",
1166
+ "trimLeading": "false",
1167
+ "trimTrailing": "true",
1168
+ "blankFill": "false",
1169
+ "rjZeroFill": "false",
1170
+ "formatting": "Text",
1171
+ "textTransform": "none"
1172
+ },
1173
+ "left": "525px",
1174
+ "top": "140px",
1175
+ "css class 2": "blueprint-constant",
1176
+ "visibility": "hidden",
1177
+ "layout": "DetailPanel",
1178
+ "container": "1"
1179
+ },
1180
+ {
1181
+ "id": "continueonerrors_label",
1182
+ "field type": "output field",
1183
+ "css class": "outputField",
1184
+ "value": "Continue On-Errors",
1185
+ "left": "25px",
1186
+ "top": "141px",
1187
+ "css class 2": "blueprint-defaults",
1188
+ "width": "175px",
1189
+ "css class 3": "blueprint-output-field",
1190
+ "text align": "right",
1191
+ "layout": "DetailPanel",
1192
+ "container": "1"
1193
+ },
1194
+ {
1195
+ "field type": "textbox",
1196
+ "float placeholder": "false",
1197
+ "allow field exit": "true",
1198
+ "width": "95px",
1199
+ "css class": "blueprint-input",
1200
+ "value": {
1201
+ "fieldName": "tsdisable",
1202
+ "refField": "TSDISABLE ATENVCMDS",
1203
+ "dataType": "reference",
1204
+ "formatting": "Time Stamp",
1205
+ "timeStampFormat": "m/d/y g:i A",
1206
+ "locale": "en_US",
1207
+ "designValue": "[tsdisable]"
1208
+ },
1209
+ "top": "170px",
1210
+ "left": "885px",
1211
+ "id": "tsdisabled",
1212
+ "visibility": "hidden",
1213
+ "layout": "DetailPanel",
1214
+ "container": "1"
1215
+ },
1216
+ {
1217
+ "id": "OutputField2",
1218
+ "field type": "output field",
1219
+ "css class": "blueprint-output-field",
1220
+ "value": {
1221
+ "fieldName": "envid",
1222
+ "refField": "ENVID ATENVCMDS",
1223
+ "trimLeading": "false",
1224
+ "trimTrailing": "true",
1225
+ "blankFill": "false",
1226
+ "rjZeroFill": "false",
1227
+ "dataType": "reference",
1228
+ "formatting": "Text",
1229
+ "textTransform": "none",
1230
+ "designValue": "[envid]"
1231
+ },
1232
+ "left": "530px",
1233
+ "top": "190px",
1234
+ "css class 2": "blueprint-constant",
1235
+ "visibility": "hidden",
1236
+ "layout": "DetailPanel",
1237
+ "container": "1"
1238
+ },
1239
+ {
1240
+ "id": "CancelButton",
1241
+ "field type": "graphic button",
1242
+ "css class": "plogic--button--tertiary",
1243
+ "value": "Cancel",
1244
+ "icon position": "left",
1245
+ "icon": "material:arrow_back",
1246
+ "shortcut key": "F12",
1247
+ "bypass validation": "true",
1248
+ "left": "20px",
1249
+ "top": "225px",
1250
+ "width": "140px",
1251
+ "css class 2": "plogic--ripple",
1252
+ "onclick": {
1253
+ "routine": "cancel button click",
1254
+ "designValue": "cancel button click"
1255
+ },
1256
+ "layout": "DetailPanel",
1257
+ "container": "1"
1258
+ },
1259
+ {
1260
+ "id": "SaveButton",
1261
+ "field type": "graphic button",
1262
+ "css class": "plogic--button--primary",
1263
+ "value": "Save",
1264
+ "icon position": "left",
1265
+ "icon": "material:save",
1266
+ "shortcut key": "F10",
1267
+ "left": "175px",
1268
+ "top": "225px",
1269
+ "width": "140px",
1270
+ "css class 2": "plogic--ripple",
1271
+ "onclick": {
1272
+ "routine": "save button click",
1273
+ "designValue": "save button click"
1274
+ },
1275
+ "layout": "DetailPanel",
1276
+ "container": "1"
1277
+ }
1278
+ ]
1279
+ }
1280
+ ],
1281
+ "keywords": [],
1282
+ "long name aliases": true
1283
+ }