addTableAction(MSG.common_button_new(), null, ButtonColor.BLUE, new RoleAuthorizedTableAction(
BundlesListView.this, Permission.CREATE_BUNDLES, Permission.CREATE_BUNDLES_IN_GROUP) {
@Override
public void executeAction(ListGridRecord[] selection, Object actionValue) {
new BundleCreateWizard(globalPermissions).startWizard();
// we can refresh the table buttons immediately since the wizard is a dialog, the
// user can't access enabled buttons anyway.
BundlesListView.this.refreshTableInfo();
}
});