private SmallButton createButton(String caption) {
   SmallButton button = new SmallButton(caption);
   button.addStyleName(RES.styles().button());
   button.fillWidth();
   return button;
 }