// Instantiate the button panel
buttonGroup = new ToolbarGroupView("Search/Filter");
// Instantiate the refresh button
btnRefresh = new JButton();
btnRefresh.setAction(new RefreshDefectsAction(controller));
buttonGroup.getContent().add(btnRefresh);
buttonGroup.setPreferredWidth(150);
// Load initial data
controller.refreshData();