We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e40dd8 commit b72cb9aCopy full SHA for b72cb9a
src/org/openlowcode/client/graphic/widget/CChoiceField.java
@@ -916,6 +916,8 @@ public String getValueForConstraint() {
916
}
917
918
public CChoiceFieldValue lookupValueByStorage(String code) {
919
+ if (code==null) return null;
920
+ if (code.length()==0) return null;
921
for (int i = 0; i < values.size(); i++) {
922
if (values.get(i).getStorageCode().equals(code))
923
return values.get(i);
0 commit comments