rightPanel.setVerticalAlignment(VerticalPanel.ALIGN_TOP);
rightPanel.add(documentsPanel);
FlexTable table = new FlexTable();
table.insertRow(0);
table.insertCell(0, 0);
table.insertCell(0, 1);
table.setWidget(0, 0, leftPanel);
table.getCellFormatter().setVerticalAlignment(1, 0, VerticalPanel.ALIGN_TOP);
table.setWidget(0, 1, rightPanel);
table.getCellFormatter().setVerticalAlignment(1, 1, VerticalPanel.ALIGN_TOP);
initWidget(table);