Skip to content

Instantly share code, notes, and snippets.

@esaounkine
Created April 29, 2011 08:09
Show Gist options
  • Save esaounkine/948025 to your computer and use it in GitHub Desktop.
Save esaounkine/948025 to your computer and use it in GitHub Desktop.
add showPopupBehavior to an ADF Rich Faces table column - backing
public void onDeleteConfirmation(oracle.adf.view.rich.event.DialogEvent de) {
if(de.getOutcome().equals(oracle.adf.view.rich.event.DialogEvent.Outcome.ok)) {
deleteSelectedRow();
FacesContext.getCurrentInstance().getApplication().getNavigationHandler().handleNavigation(FacesContext.getCurrentInstance(), "", "scheduler");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment