Project

General

Profile

« Previous | Next » 

Revision 81f8e15d

Added by Andreas Kohlbecker over 6 years ago

using CdmFilterablePagingProvider in ReferenceEditorPresenter

View differences:

src/main/java/eu/etaxonomy/cdm/vaadin/view/reference/ReferencePopupEditor.java
48 48

  
49 49
    private ToOneRelatedEntityCombobox<Reference> inReferenceCombobox;
50 50

  
51
    private TeamOrPersonField authorshipField;
52

  
51 53
    /**
52 54
     * @param layout
53 55
     * @param dtoType
......
107 109
        row++;
108 110
        addTextField("NomenclaturalTitle", "abbrevTitle", 0, row, GRID_COLS-1, row).setWidth(100, Unit.PERCENTAGE);
109 111
        row++;
110
        TeamOrPersonField authorshipField = new TeamOrPersonField("Author(s)");
112
        authorshipField = new TeamOrPersonField("Author(s)");
111 113
        authorshipField.setWidth(100,  Unit.PERCENTAGE);
112 114
        addField(authorshipField, "authorship", 0, row, 3, row);
113 115
        row++;
......
236 238
        return inReferenceCombobox;
237 239
    }
238 240

  
241
    /**
242
     * {@inheritDoc}
243
     */
244
    @Override
245
    public TeamOrPersonField getAuthorshipField() {
246
        return authorshipField;
247
    }
248

  
249

  
239 250
}

Also available in: Unified diff