Commit ba6f07c0 by Leonard Ambros II

resolution on WG-392

parent aa4db13d
......@@ -658,8 +658,10 @@ const inputDropdown = (key, validation) => {
input.addEventListener('keydown', function (event) {
if (event.keyCode == 9) {
event.preventDefault();
var elem = document.getElementsByClassName('select2-search__field');
elem.focus();
//var elem = document.getElementsByClassName('select2-search__field');
//elem.focus();
const dropdownField = document.getElementById(`${key}`);
dropdownField.blur();
}
});
......@@ -702,8 +704,10 @@ const inputDbLookup = async (key, validation) => {
input.addEventListener('keydown', function (event) {
if (event.keyCode == 9) {
event.preventDefault();
var elem = document.getElementsByClassName('select2-search__field');
elem.focus();
//var elem = document.getElementsByClassName('select2-search__field');
//elem.focus();
const dropdownDbLookup = document.getElementById(`${key}`);
dropdownDbLookup.blur();
}
});
......
......@@ -8,7 +8,7 @@ export const HIGH_LIGHT_SCHEMA = "./WebGde-Widgets/sample_schema/dbSchema_anno.
export const ROOT_FOLDER = "/WebGde-Widgets";
//this determines if the images will be retrieved from the gfs
const IP = "3.82.212.32"
const IP = "44.202.63.115"
const GDE_CONTEXTROOT = "WebGde-v121-b1"
export const DOMAIN = `http://${IP}:8080`
export const CONTEXTROOT = "gfs-explorer-ws"
......
......@@ -35,8 +35,8 @@
"aka" : "field5",
"validation" : {
"fieldLength" : 1.0,
"collection" : "radiolist",
"items" : [ "M", "F" ],
"collection" : "dropdown",
"options" : [ "M", "F" ],
"mandatory" : true
}
},
......@@ -72,8 +72,8 @@
"aka" : "field9",
"validation" : {
"fieldLength" : 20.0,
"collection" : "radiolist",
"items" : [ "Emergency Room", "Inpatient", "Outpatient", "other" ],
"collection" : "dropdown",
"options" : [ "Emergency Room", "Inpatient", "Outpatient" ],
"mandatory" : true
}
},
......@@ -82,8 +82,8 @@
"aka" : "field10",
"validation" : {
"fieldLength" : 7.0,
"collection" : "checklist",
"items" : [ "Pay", "Service", "other" ],
"collection" : "dropdown",
"options" : [ "Pay", "Service", "other" ],
"mandatory" : true
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment