940941942943944945946947948949950
{ select.addError(dcInput.getWarning()); } else { select.addError(T_required_field); } } if (dcInput.isRepeatable() || dcValues.length > 1) { // Use the multiple functionality from the HTML
10061007100810091010101110121013101410151016
} if (isFieldInError(fieldName)) { if (dcInput.getWarning() != null && dcInput.getWarning().length() > 0) { select.addError(dcInput.getWarning()); } else { select.addError(T_required_field); }
10101011101210131014101510161017101810191020
152153154155156157158159160161162
{ select.setHelp("Select one of the options"); } if (error) { select.addError("This field is in error."); } select.addOption("one","uno"); select.addOption("two","dos"); select.addOption("three","tres"); select.addOption("four","cuatro");
256257258259260261262263264265266
{ select.setHelp("Select one or more options"); } if (error) { select.addError("This field is in error."); } select.addOption("one","uno"); select.addOption("two","dos"); select.addOption("three","tres"); select.addOption("four","cuatro");