HLayout buttonLayout = new HLayout(15);
IButton unGroupButton = new IButton("Ungroup");
unGroupButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
countryGrid.ungroup();
}
});
IButton groupByButton = new IButton("Group By Continent");