menuBar.addStyleName(ExplorerLayout.STYLE_SEARCHBOX_SORTMENU);
//TODO: Adding types of sorting manually and listener/events
MenuItem rootItem = menuBar.addItem("Sort by", null);
rootItem.addItem("Id", null);
rootItem.addItem("Name", null);
rootItem.addItem("Due date", null);
rootItem.addItem("Creation date", null);
layout.addComponent(menuBar);
layout.setComponentAlignment(menuBar, Alignment.MIDDLE_RIGHT);