XSLTools

Change of examples/Common/Configurator/Resources/scripts/XSLForms.js

307:d6c3dbeae8ee
examples/Common/Configurator/Resources/scripts/XSLForms.js
     1.1 --- a/examples/Common/Configurator/Resources/scripts/XSLForms.js	Wed Oct 12 16:31:49 2005 +0000
     1.2 +++ b/examples/Common/Configurator/Resources/scripts/XSLForms.js	Wed Oct 12 16:33:14 2005 +0000
     1.3 @@ -64,6 +64,12 @@
     1.4      for (var i = 0; i < fieldNameArray.length; i++) {
     1.5          var fieldName = fieldNameArray[i];
     1.6  
     1.7 +        // Skip empty field names (arising through empty elements in the CSV list).
     1.8 +
     1.9 +        if (fieldName == "") {
    1.10 +            continue;
    1.11 +        }
    1.12 +
    1.13          // Find the values of the target field.
    1.14  
    1.15          var fieldValue;