-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathserver.html
670 lines (636 loc) · 39.4 KB
/
server.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
<!DOCTYPE html>
<html lang="en">
<head>
<title>CAMP FHIR</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script>
function toggle() {
var x = document.getElementById("resourceconfiguration");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
function myFunction(id) {
// Declare variables
var input, filter, table, tr, td, i, txtValue;
input = document.getElementById(id);
filter = input.value.toUpperCase();
let tableId = id.replace("SearchInput", "");
table = document.getElementById(tableId + "Table");
tr = table.getElementsByTagName("tr");
// Loop through all table rows, and hide those who don't match the search query
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
if (td) {
txtValue = td.textContent || td.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
function clickSubmit() {
document.getElementById("xmlForm").submit();
document.getElementById("configform").submit();
}
</script>
</head>
<body>
<div class="container">
<form id="configform" action="/" method="POST">
<div class="form-group">
<label for="sqldialects">Dialects of SQL</label>
<input list="sqldialects" name="sqldialects" class="form-control" aria-describedby="sqldialects"
placeholder="Select SQL Dialect">
<datalist id="sqldialects" placeholder="Select Dialect">
<option value="org.hibernate.dialect.Oracle12cDialect">Oracle (any version) </option>
<option value="Oracle9i">Oracle9i</option>
<option value="Oracle10g">Oracle10g</option>
<option value="MySQL">MySQL</option>
<option value="MySQL with InnoDB">MySQL with InnoDB</option>
<option value="MySQL with MyISAM">MySQL with MyISAM</option>
<option value="DB2">DB2</option>
<option value="DB2 AS/400">DB2 AS/400</option>
<option value="DB2 OS390">DB2 OS390</option>
<option value="Microsoft SQL Server">Microsoft SQL Server</option>
<option value="Sybase">Sybase</option>
<option value="PostgreSQL">PostgreSQL</option>
<option value="SAP DB">SAP DB</option>
<option value="Informix">Informix</option>
<option value="HypersonicSQL"> HypersonicSQL</option>
<option value="Ingres">Ingres</option>
<option value="Progress">Progress</option>
<option value="Mckoi SQL">Mckoi SQL</option>
<option value="Interbase">Interbase</option>
<option value="Pointbase">Pointbase</option>
<option value="Frontbase">Frontbase</option>
<option value="Fiirebir">Fiirebir</option>
</datalist>
</div>
<div class="form-group">
<label for="driverclass">Driver Class</label>
<input type="text" class="form-control" id="driverclass" aria-describedby="driverclass"
placeholder="Enter Driver Class" name="driverclass">
</div>
<div class="form-group">
<label for="dburl">Database Connection URL</label>
<input type="text" class="form-control" id="dburl" aria-describedby="dburl" placeholder="Enter Database Url"
name="dburl">
</div>
<div class="form-group">
<label for="dbusername">Database Username</label>
<input type="text" class="form-control" id="dbusername" aria-describedby="dbusername"
placeholder="Enter Database Username" name="dbusername">
</div>
<div class="form-group">
<label for="db_passsword">Database Password</label>
<input type="password" class="form-control" id="dbpassword" aria-describedby="dbpassword"
placeholder="Enter Database Password" name="dbpassword">
</div>
<div class="form-group">
<label for="outputfolder">Output folder</label>
<input type="text" id="outputfolder" class="form-control" name="outputfolder"
placeholder="Enter Output Folder Name" />
</div>
<div class="form-group">
<label for="partition">Partition (number of records per file)</label>
<input type="text" class="form-control" id="partition" aria-describedby="partition"
placeholder="Partition Number" name="partition">
</div>
<div class="form-group">
<label for="db_resource">FHIR Resource (R4)</label>
<div class="resouce-content">
<div id="tabs-1" aria-labelledby="ui-id-1" class="ui-tabs-panel ui-widget-content ui-corner-bottom"
role="tabpanel" aria-hidden="false">
<table width="105%" style="border: 0.5px solid gray; border-collapse: collapse;">
<tbody>
<tr class="frm-group">
<td rowspan="2" class="frm-group rotate" style="padding-left:8px">
<div>Foundation</div>
</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Conformance</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Terminology</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Security</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Documents</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Other</td>
</tr>
<tr class="frm-contents" style="font-size: 12px;">
<td class="frm-set" style="width:fit-content">
<ul class="frm-set">
<input type="radio" id="radio" value="CapabilityStatement" name="resource" disabled>
<label for="radio"> Capability Statement</label> <br>
<input type="radio" id="radio" value="StructureDefinition" name="resource" disabled>
<label for="radio"> StructureDefinition</label><br>
<input type="radio" id="radio" value="ImplementationGuide" name="resource" disabled>
<label for="radio"> ImplementationGuide</label><br>
<input type="radio" id="radio" value="SearchParameter" name="resource" disabled>
<label for="radio"> SearchParameter</label><br>
<input type="radio" id="radio" value="MessageDefinition" name="resource" disabled>
<label for="radio"> MessageDefinition</label><br>
<input type="radio" id="radio" value="OperationDefinition" name="resource" disabled>
<label for="radio"> OperationDefinition</label><br>
<input type="radio" id="radio" value="CompartmentDefinition" name="resource" disabled>
<label for="radio"> CompartmentDefinition</label><br>
<input type="radio" id="radio" value="GraphDefinition" name="resource" disabled>
<label for="radio"> GraphDefinition</label><br>
<input type="radio" id="radio" value="ExampleScenario" name="resource" disabled>
<label for="radio"> ExampleScenario</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="CodeSystem" name="resource" disabled>
<label for="radio">CodeSystem</label><br>
<input type="radio" id="radio" value="ValueSet" name="resource" disabled>
<label for="radio">ValueSet</label><br>
<input type="radio" id="radio" value="ConceptMap" name="resource" disabled>
<label for="radio">ConceptMap</label><br>
<input type="radio" id="radio" value="NamingSystem" name="resource" disabled>
<label for="radio">NamingSystem</label> <br>
<input type="radio" id="radio" value="TerminologyCapabilities" name="resource" disabled>
<label for="radio">Terminology Capabilities</label> <br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Provenance" name="resource" disabled>
<label for="radio">Provenance</label><br>
<input type="radio" id="radio" value="AuditEventvel" name="resource" disabled>
<label for="radio">AuditEventvel</label><br>
<input type="radio" id="radio" value="Consent" name="resource" disabled>
<label for="radio">Consent</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Composition" name="resource" disabled>
<label for="radio">Composition</label><br>
<input type="radio" id="radio" value="DocumentManifest" name="resource" disabled>
<label for="radio"> DocumentManifest</label><br>
<input type="radio" id="radio" value="DocumentReference" name="resource">
<label for="radio">DocumentReference</label><br>
<input type="radio" id="radio" value="CatalogEntry" name="resource" disabled>
<label for="radio">CatalogEntry</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Basic" name="resource" disabled>
<label for="radio">Basic</label><br>
<input type="radio" id="radio" value="Binary" name="resource" disabled>
<label for="radio">Binary</label><br>
<input type="radio" id="radio" value="Bundle" name="resource" disabled>
<label for="radio">Bundle</label><br>
<input type="radio" id="radio" value="Linkage" name="resource" disabled>
<label for="radio">Linkage</label><br>
<input type="radio" id="radio" value="MessageHeader" name="resource" disabled>
<label for="radio">MessageHeader</label><br>
<input type="radio" id="radio" value="OperationOutcome" name="resource" disabled>
<label for="radio">OperationOutcome</label><br>
<input type="radio" id="radio" value="Parameters" name="resource" disabled>
<label for="radio">Parameters</label><br>
<input type="radio" id="radio" value="Subscription" name="resource" disabled>
<label for="radio">Subscription</label><br>
</ul>
</td>
</tr>
<tr class="frm-break">
<td colspan="6"></td>
</tr>
<tr class="frm-group">
<td rowspan="2" class="frm-group rotate" style="padding-left:8px">
<div>Base</div>
</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Individuals</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Entities #1</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Entities #2</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Workflow</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Management</td>
</tr>
<tr class="frm-contents">
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Patient" name="resource" checked="checked">
<label for="radio">Patient</label><br>
<input type="radio" id="radio" value="Practitioner" name="resource">
<label for="radio">Practitioner</label><br>
<input type="radio" id="radio" value="PractitionerRole" name="resource" disabled>
<label for="radio">PractitionerRole</label><br>
<input type="radio" id="radio" value="RelatedPerson" name="resource" disabled>
<label for="radio">RelatedPerson</label><br>
<input type="radio" id="radio" value="Person" name="resource" disabled>
<label for="radio">Person</label><br>
<input type="radio" id="radio" value="Group" name="resource" disabled>
<label for="radio">Group</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Organization" name="resource" disabled>
<label for="radio">Organization</label><br>
<input type="radio" id="radio" value="OrganizationAffiliation" name="resource" disabled>
<label for="radio">OrganizationAffiliation</label><br>
<input type="radio" id="radio" value="HealthcareService" name="resource" disabled>
<label for="radio">HealthcareService</label><br>
<input type="radio" id="radio" value="Endpoint" name="resource" disabled>
<label for="radio">Endpoint</label><br>
<input type="radio" id="radio" value="Location" name="resource" disabled>
<label for="radio">Location</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Substance" name="resource" disabled>
<label for="radio">Substance</label><br>
<input type="radio" id="radio" value="BiologicallyDerivedProduct" name="resource" disabled>
<label for="radio">BiologicallyDerivedProduct</label><br>
<input type="radio" id="radio" value="Device" name="resource">
<label for="radio">Device</label><br>
<input type="radio" id="radio" value="DeviceMetric" name="resource" disabled>
<label for="radio">DeviceMetric</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px; width: fit-content;">
<ul class="frm-set">
<input type="radio" id="radio" value="Task" name="resource" disabled>
<label for="radio">Task</label><br>
<input type="radio" id="radio" value="Appointment" name="resource" disabled>
<label for="radio">Appointment</label><br>
<input type="radio" id="radio" value="AppointmentResponse" name="resource" disabled>
<label for="radio">AppointmentResponse</label><br>
<input type="radio" id="radio" value="Schedule" name="resource" disabled>
<label for="radio">Schedule</label><br>
<input type="radio" id="radio" value="Slot" name="resource" disabled>
<label for="radio">Slot</label><br>
<input type="radio" id="radio" value="VerificationResult" name="resource" disabled>
<label for="radio">VerificationResult</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Encounter" name="resource">
<label for="radio">Encounter</label><br>
<input type="radio" id="radio" value="EpisodeOfCare" name="resource" disabled>
<label for="radio">EpisodeOfCare</label><br>
<input type="radio" id="radio" value="Flag" name="resource" disabled>
<label for="radio">Flag</label><br>
<input type="radio" id="radio" value="List" name="resource" disabled>
<label for="radio">List</label><br>
<input type="radio" id="radio" value="Library" name="resource" disabled>
<label for="radio">Library</label><br>
</ul>
</td>
</tr>
<tr class="frm-break">
<td colspan="6"></td>
</tr>
<tr class="frm-group">
<td rowspan="2" class="frm-group rotate" style="padding-left:8px">
<div>Clinical</div>
</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Summary</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Diagnostics</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Medications</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Care Provision</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Request & Response</td>
</tr>
<tr class="frm-contents">
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="AdverseEvent" name="resource" disabled>
<label for="radio">AdverseEvent</label><br>
<input type="radio" id="radio" value="Condition" name="resource">
<label for="radio">Condition</label><br>
<input type="radio" id="radio" value="Procedure" name="resource">
<label for="radio">Procedure</label><br>
<input type="radio" id="radio" value="FamilyMemberHistory" name="resource" disabled>
<label for="radio">FamilyMemberHistory</label><br>
<input type="radio" id="radio" value="ClinicalImpression" name="resource" disabled>
<label for="radio">ClinicalImpression</label><br>
<input type="radio" id="radio" value="DetectedIssue" name="resource" disabled>
<label for="radio">DetectedIssue</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Observation" name="resource" disabled>
<label for="radio">Observation</label><br>
<input type="radio" id="radio" value="Media" name="resource" disabled>
<label for="radio">Media</label><br>
<input type="radio" id="radio" value="DiagnosticReport" name="resource" disabled>
<label for="radio">DiagnosticReport</label><br>
<input type="radio" id="radio" value="Specimen" name="resource" disabled>
<label for="radio">Specimen</label><br>
<input type="radio" id="radio" value="ImagingStudy" name="resource" disabled>
<label for="radio">ImagingStudy</label><br>
<input type="radio" id="radio" value="QuestionnaireResponse" name="resource" disabled>
<label for="radio">Questionnaire Response</label><br>
<input type="radio" id="radio" value="MolecularSequence" name="resource" disabled>
<label for="radio">MolecularSequence</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="MedicationRequest" name="resource">
<label for="radio">MedicationRequest</label><br>
<input type="radio" id="radio" value="MedicationAdministration" name="resource" disabled>
<label for="radio">MedicationAdministration</label><br>
<input type="radio" id="radio" value="MedicationDispense" name="resource" disabled>
<label for="radio">MedicationDispense</label><br>
<input type="radio" id="radio" value="MedicationStatement" name="resource" disabled>
<label for="radio">MedicationStatement</label><br>
<input type="radio" id="radio" value="Medication" name="resource" disabled>
<label for="radio">Medication</label><br>
<input type="radio" id="radio" value="Immunization" name="resource" disabled>
<label for="radio">Immunization</label><br>
<input type="radio" id="radio" value="ImmunizationEvaluation" name="resource" disabled>
<label for="radio">ImmunizationEvaluation</label><br>
<input type="radio" id="radio" value="ImmunizationRecommendation" name="resource" disabled>
<label for="radio">ImmunizationRecommendation</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="CarePlan" name="resource" disabled>
<label for="radio">CarePlan</label><br>
<input type="radio" id="radio" value="Goal" name="resource" disabled>
<label for="radio">Goal</label><br>
<input type="radio" id="radio" value="ServiceRequest" name="resource" disabled>
<label for="radio">ServiceRequest</label><br>
<input type="radio" id="radio" value="NutritionOrder" name="resource" disabled>
<label for="radio">NutritionOrder</label><br>
<input type="radio" id="radio" value="VisionPrescription" name="resource" disabled>
<label for="radio">VisionPrescription</label><br>
<input type="radio" id="radio" value="RiskAssessment" name="resource" disabled>
<label for="radio">RiskAssessment</label><br>
<input type="radio" id="radio" value="RequestGroup" name="resource" disabled>
<label for="radio">RequestGroup</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Communication" name="resource" disabled>
<label for="radio">Communication</label><br>
<input type="radio" id="radio" value="CommunicationRequest" name="resource" disabled>
<label for="radio">CommunicationRequest</label><br>
<input type="radio" id="radio" value="DeviceRequest" name="resource" disabled>
<label for="radio">DeviceRequest</label><br>
<input type="radio" id="radio" value="DeviceUseStatement" name="resource" disabled>
<label for="radio">DeviceUseStatement</label><br>
<input type="radio" id="radio" value="SupplyRequest" name="resource" disabled>
<label for="radio">SupplyRequest</label><br>
<input type="radio" id="radio" value="SupplyDelivery" name="resource" disabled>
<label for="radio">SupplyDelivery</label><br>
</ul>
</td>
</tr>
<tr class="frm-break">
<td colspan="6"></td>
</tr>
<tr class="frm-group">
<td rowspan="2" class="frm-group rotate" style="padding-left:8px">
<div>Financial</div>
</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Support</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Billing</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Payment</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">General</td>
<td class="frm-null"></td>
</tr>
<tr class="frm-contents">
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Coverage" name="resource" disabled>
<label for="radio">Coverage</label><br>
<input type="radio" id="radio" value="CoverageEligibilityResponse" name="resource" disabled>
<label for="radio">Coverage Eligibility Response</label><br>
<input type="radio" id="radio" value="EnrollmentRequest" name="resource" disabled>
<label for="radio">EnrollmentRequest</label><br>
<input type="radio" id="radio" value="EnrollmentResponse" name="resource" disabled>
<label for="radio">EnrollmentResponse</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Claim<" name="resource" disabled>
<label for="radio">Claim</label><br>
<input type="radio" id="radio" value="ClaimResponse" name="resource" disabled>
<label for="radio">ClaimResponse</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="PaymentNotice" name="resource" disabled>
<label for="radio">PaymentNotice</label><br>
<input type="radio" id="radio" value="PaymentReconciliation" name="resource" disabled>
<label for="radio">PaymentReconciliation</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Account" name="resource" disabled>
<label for="radio">Account</label><br>
<input type="radio" id="radio" value="ChargeItem" name="resource" disabled>
<label for="radio">ChargeItem</label><br>
<input type="radio" id="radio" value="ChargeItemDefinition" name="resource" disabled>
<label for="radio">ChargeItemDefinition</label><br>
<input type="radio" id="radio" value="Contract" name="resource" disabled>
<label for="radio">Contract</label><br>
<input type="radio" id="radio" value="ExplanationOfBenefit" name="resource" disabled>
<label for="radio">ExplanationOfBenefit</label><br>
<input type="radio" id="radio" value="InsurancePlan" name="resource" disabled>
<label for="radio">InsurancePlan</label><br>
</ul>
</td>
<td style="width: fit-content;" class="frm-null"></td>
</tr>
<tr class="frm-break">
<td style="width: fit-content;" colspan="6"></td>
</tr>
<tr class="frm-group">
<td rowspan="2" class="frm-group rotate" style="padding-left:8px">
<div>Specialized</div>
</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Public Health & Research</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Definitional Artifacts</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Evidence-Based Medicine</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Quality Reporting & Testing</td>
<td class="frm-category" style="border-left: 1px solid #eeeeee;
font-weight: bold;
text-align: center;">Medication Definition</td>
</tr>
<tr class="frm-contents">
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="ResearchStudy" name="resource" disabled>
<label for="radio">ResearchStudy</label><br>
<input type="radio" id="radio" value="ResearchSubject" name="resource" disabled>
<label for="radio">ResearchSubject</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="ActivityDefinition" name="resource" disabled>
<label for="radio">ActivityDefinition</label><br>
<input type="radio" id="radio" value="DeviceDefinition" name="resource" disabled>
<label for="radio">DeviceDefinition</label><br>
<input type="radio" id="radio" value="EventDefinition" name="resource" disabled>
<label for="radio">EventDefinition</label><br>
<input type="radio" id="radio" value="ObservationDefinition" name="resource" disabled>
<label for="radio">ObservationDefinition</label><br>
<input type="radio" id="radio" value="PlanDefinition" name="resource" disabled>
<label for="radio">PlanDefinition</label><br>
<input type="radio" id="radio" value="Questionnaire" name="resource" disabled>
<label for="radio">Questionnaire</label><br>
<input type="radio" id="radio" value="SpecimenDefinition" name="resource" disabled>
<label for="radio">SpecimenDefinition</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="ResearchDefinition" name="resource" disabled>
<label for="radio">ResearchDefinition</label><br>
<input type="radio" id="radio" value="ResearchElementDefinition" name="resource" disabled>
<label for="radio">ResearchElementDefinition</label><br>
<input type="radio" id="radio" value="Evidence" name="resource" disabled>
<label for="radio">Evidence</label><br>
<input type="radio" id="radio" value="EvidenceVariable" name="resource" disabled>
<label for="radio">EvidenceVariable</label><br>
<input type="radio" id="radio" value="EffectEvidenceSynthesis" name="resource" disabled>
<label for="radio">EffectEvidenceSynthesis</label><br>
<input type="radio" id="radio" value="RiskEvidenceSynthesis" name="resource" disabled>
<label for="radio">RiskEvidenceSynthesis</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="Measure" name="resource" disabled>
<label for="radio">Measure</label><br>
<input type="radio" id="radio" value="MeasureReport" name="resource" disabled>
<label for="radio">MeasureReport</label><br>
<input type="radio" id="radio" value="TestScript" name="resource" disabled>
<label for="radio">TestScript</label><br>
<input type="radio" id="radio" value="TestReport" name="resource" disabled>
<label for="radio">TestReport</label><br>
</ul>
</td>
<td class="frm-set" style="font-size: 12px;">
<ul class="frm-set">
<input type="radio" id="radio" value="MedicinalProducions" name="resource" disabled>
<label for="radio">MedicinalProducions</label><br>
<input type="radio" id="radio" value="MedicinalProductAuthorization" name="resource" disabled>
<label for="radio">MedicinalProductAuthorization</label><br>
<input type="radio" id="radio" value="capabilitystatement" name="resource" disabled>
<label for="radio">MedicinalProductContraindication</label><br>
<input type="radio" id="radio" value="MedicinalProductIndication" name="resource" disabled>
<label for="radio">MedicinalProductIndication</label><br>
<input type="radio" id="radio" value="MedicinalProductIngredient" name="resource" disabled>
<label for="radio">MedicinalProductIngredient</label><br>
<input type="radio" id="radio" value="MedicinalProductInteraction" name="resource" disabled>
<label for="radio">MedicinalProductInteraction</label><br>
<input type="radio" id="radio" value="MedicinalProductManufactured" name="resource" disabled>
<label for="radio">MedicinalProductManufactured</label><br>
<input type="radio" id="radio" value="MedicinalProductPackaged" name="resource" disabled>
<label for="radio">MedicinalProductPackaged</label><br>
<input type="radio" id="radio" value="MedicinalProductPharmaceutical" name="resource" disabled>
<label for="radio">MedicinalProductPharmaceutical</label><br>
<input type="radio" id="radio" value="MedicinalProductUndesirableEffect" name="resource" disabled>
<label for="radio">MedicinalProductUndesirableEffect</label><br>
<input type="radio" id="radio" value="SubstanceNucleicAcid" name="resource" disabled>
<label for="radio">SubstanceNucleicAcid</label><br>
<input type="radio" id="radio" value="SubstancePolymer" name="resource" disabled>
<label for="radio">SubstancePolymer</label><br>
<input type="radio" id="radio" value="SubstanceReferenceInformation" name="resource" disabled>
<label for="radio">SubstanceReferenceInformation</label><br>
<input type="radio" id="radio" value="SubstanceSourceMaterial" name="resource" disabled>
<label for="radio">SubstanceSourceMaterial</label><br>
</ul>
</td>
</tr>
<tr class="frm-break">
<td style="width: fit-content;" colspan="6"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- <button type="submit" class="btn btn-primary" id="s" >Submit</button> -->
</form>
<form id="xmlForm" action="/saveXML" method="post">
<div class="form-group">
<input type="checkbox" name="custommapping" onclick="toggle()" /> <label
for="exampleFormControlTextarea1">Database Resource Mapping</label>
<div id="resourceconfiguration" style="display:none">
<ul class="nav nav-tabs">
REPLACE WITH TABXML
</ul>
<div class="tab-content">
REPLACE WITH DATABASEXML
</div>
</div>
</div>
</form>
<input type="button" id="submit" class="btn btn-primary" onclick="clickSubmit()" value="Submit"></button>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>