demos\medical\documents\qref.sdf
 1 GridPane {
 2   rows: "2"
 3   columns: "1"
 4   regions {
 5     {
 6       verticalFill: "preferred"
 7       viewer {
 8         Navigator {
 9           name: "qrefNavigator"
10           actions {
11             {
12               icon: "resource:Sage.icon.navigatorHome"
13             } [ onAction="window.alert('Going Home')" ]
14             {
15               value: "Medications"
16             } [ onAction="window.alert('Going back to Medications')" ]
17             {value: "LASIX" }
18           }
19         }
20       }
21     }
22     {
23       contentPadding { left: "4"; top: "2"; right: "4"; bottom: "2" }
24       viewer {
25         Form {
26           borders: "line" [ color="gray", thickness="2", cornerArc="10" ]
27           contentPadding { left: "4"; top: "2"; right: "4"; bottom: "2" }
28           bgColor: "white"
29           columns: "3"
30           widgets {
31             {
32               Label {
33                 name: "noteDetail"
34                 bounds { x: "0"; y: "0" }
35                 textHAlignment: "left"
36                 horizontalAlign: "full"
37                 font-style: "bold"
38                 fgColor: "blue+10"
39                 value: "LABS"
40               }
41             }
42             {
43               PushButton {
44                 name: "showDocuments"
45                 bounds { x: "1"; y: "0" }
46                 fgColor: "blue"
47                 value: "Documents"
48                 buttonStyle: "hyperlink_always_underline"
49               }
50             }
51             {
52               PushButton {
53                 name: "showMedications"
54                 bounds { x: "2"; y: "0" }
55                 fgColor: "blue"
56                 value: "Medications"
57                 buttonStyle: "hyperlink_always_underline"
58               }
59             }
60             {
61               DocumentPane {
62                 borders: "focus"
63                 editable: "false"
64                 wordWrap: "false"
65                 verticalAlign: "full"
66                 horizontalAlign: "full"
67                 columnSpan: "3"
68                 font { monospaced: "true"; size: "-1" }
69                 dataURL:<< 
70 FUROSIMIDE 20MG TAB 20MG PO BID
71 
72 Activity:
73   New Order  entered
74 
75        Order Text: FUROSIMIDE 20MG TAB PO BID
76   Nature of Order: ELECTRONICALLY ENTERED
77    Elec Signature: DeCoteau, Don
78 
79                Current Data:
80    Current Primary Provider: DeCoteau, Don
81 Current Attending Physician: DeCoteau, Don
82        Technical Specialist:
83    >> [ inline="true" ]
84               }
85             }
86           }
87         }
88       }
89     }
90   }
91 }
92 
93 
94 
95