Skip to content

Commit

Permalink
State column
Browse files Browse the repository at this point in the history
  • Loading branch information
ablx committed Oct 5, 2017
1 parent bc892fb commit 0f390ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class DocumentOverviewView extends BaseView implements UIEvents.PollListe
private void init() {

grid = new Grid<Document>(Document.class);
grid.setColumns("fileName", "version");
grid.setColumns("fileName", "version", "state");
grid.addComponentColumn(d -> new MLabel(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(d.getCreated()))).setCaption("Erstellt");
grid.addComponentColumn(d -> new MLabel(DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(d.getLastModified()))).setCaption("Letzte Änderung");

Expand Down

0 comments on commit 0f390ec

Please sign in to comment.