so I get a drop down with Yes/No, but if "no" is selected and user selects, they get "No/Yes/No" in other words, No is already selected it should not be a choice.
it does have a value map?
newField.setCanToggle(false);
final LinkedHashMap<String, String> activeValueMap= new LinkedHashMap<>(2);
activeValueMap.put("true", "Yes");
activeValueMap.put("false", "No");
newField.setValueMap(activeValueMap);
it does have a value map?
newField.setCanToggle(false);
final LinkedHashMap<String, String> activeValueMap= new LinkedHashMap<>(2);
activeValueMap.put("true", "Yes");
activeValueMap.put("false", "No");
newField.setValueMap(activeValueMap);
Comment