if (event instanceof ActionEvent) {
// Invoke the default ActionListener
ActionListener listener =
getFacesContext().getApplication().getActionListener();
if (listener != null) {
listener.processAction((ActionEvent) event);
}
}
}
/////////////////////////////////////