Cancel Partial Refresh


/***
 * Cancel Partial Refresh
 *
 * Function cancels a partial refresh and prevents client to refresh the DOM tree.
 * Thanks to Philippe Riand for his assistance!
 *
 * @author Sven Hasselbach
 *
 ***/

function cancelPartialRefresh(){
   var response = facesContext.getExternalContext().getResponse();
   response.setHeader("X-XspRefreshId", "@none");
   response.reset();
   response.commitResponse();
   facesContext.responseComplete();
}
All code submitted to OpenNTF XSnippets, whether submitted as a "Snippet" or in the body of a Comment, is provided under the Apache License Version 2.0. See Terms of Use for full details.
No comments yetLogin first to comment...