stricklandrbls commented on code in PR #904:
URL: https://github.com/apache/daffodil-vscode/pull/904#discussion_r1409777183


##########
src/launchWizard/launchWizard.js:
##########
@@ -27,15 +27,88 @@ function getConfigIndex() {
   if (configSelectedValue === 'New Config') {
     document.getElementById('nameLabel').style =
       'margin-top: 10px; visibility: visible;'
+    document.getElementById('copyLaunchConfigButton').style =
+      'visibility: hidden;'
   } else {
     document.getElementById('nameLabel').style = 'visibility: hidden;'
+    document.getElementById('copyLaunchConfigButton').style =
+      'visibility: visible;'
   }
 
   return configSelectedValue === 'New Config'
     ? -1
     : configSelectionBox.selectedIndex
 }
 
+function getConfigValues() {
+  var configSelectionBox = document.getElementById('configSelected')
+  var configSelectedValue =
+    configSelectionBox.options[configSelectionBox.selectedIndex].value
+  const name =
+    configSelectedValue === 'New Config'
+      ? document.getElementById('name').value
+      : configSelectedValue
+  const data = document.getElementById('data').value
+  const debugServer = parseInt(document.getElementById('debugServer').value)
+  const infosetFormat = document.getElementById('infosetFormat').value
+  const infosetOutputFilePath = document.getElementById(
+    'infosetOutputFilePath'
+  ).value
+  const infosetOutputType = document.getElementById('infosetOutputType').value
+  const tdmlAction = document.getElementById('tdmlAction').value
+  const tdmlName = document.getElementById('tdmlName').value
+  const tdmlDescription = document.getElementById('tdmlDescription').value
+  const tdmlPath = document.getElementById('tdmlPath').value
+  const openHexView = document.getElementById('openHexView').checked

Review Comment:
   Are hexviews still being used? I remember removing the `hexy` capability 
from the old data editor and don't recall seeing it being used anywhere else 
throughout the project. Granted I haven't been thoroughly searching.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to