When adding a component to a row with a caption, the caption isn't added and displayed (doesn't seem to appear in the dom either.
To recreate:
`board = new Board();
Label l = new Label("Test Label Value");
l.setCaption("Test Label Caption");
Row row = new Row();
row.addComponent(l);
board.addRow(row);`
The components caption is not added along with the component itself.
When browsing through the generated html, the caption element doesn't appear to be added at all.
Use Case:
When adding components to the board (grids, maps, etc) it would be helpful to be able to caption them.