Skip to content

Instantly share code, notes, and snippets.

@65
Created March 10, 2012 10:59
Show Gist options
  • Save 65/2011154 to your computer and use it in GitHub Desktop.
Save 65/2011154 to your computer and use it in GitHub Desktop.
customising ajaxCFC JQuery - BlockUI Messages
blockMessage: "Fetching Products...",
$.AjaxCFCHelper.setBlockUI(true);
$.AjaxCFC({
url: "/ajax/ecom.cfc",
method: "getProductList",
data: {"CategoryID":0},
blockMessage: "Fetching Products...",
error: function(r){
//no action required
},
success: function(r) {
sDumper(r);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment