Project

General

Profile

« Previous | Next » 

Revision ee2bbfeb

Added by Andreas Kohlbecker over 4 years ago

fix #8408 adding select for code editions to nom status row

View differences:

src/main/java/eu/etaxonomy/cdm/vaadin/view/name/NomenclaturalStatusRow.java
42 42
    ToOneRelatedEntityCombobox<Reference> citation = new ToOneRelatedEntityCombobox<Reference>(null, Reference.class);
43 43
    TextField citationMicroReference = new TextFieldNFix();
44 44
    TextField ruleConsidered = new TextFieldNFix();
45
    NativeSelect codeEdition = new NativeSelect();
45 46

  
46 47
    public NomenclaturalStatusRow() {
47 48

  
......
49 50
        citation.setNestedButtonStateUpdater(new ToOneRelatedEntityButtonUpdater<Reference>(citation));
50 51
        citationMicroReference.setWidth(200, Unit.PIXELS);
51 52
        ruleConsidered.setWidth(200, Unit.PIXELS);
53
        codeEdition.setWidth(200, Unit.PIXELS);
52 54
    }
53 55

  
54 56
    /**
......
59 61
                type,
60 62
                citation,
61 63
                citationMicroReference,
62
                ruleConsidered
64
                ruleConsidered,
65
                codeEdition
63 66
            };
64 67
        addAll(Arrays.asList(components));
65 68
        return components;
......
70 73
            "type",
71 74
            "citation",
72 75
            "citationMicroReference",
73
            "ruleConsidered"
76
            "ruleConsidered",
77
            "codeEdition"
74 78
            });
75 79
        return visibleFields;
76 80
    }

Also available in: Unified diff