Name

global.CatalogTransactionContinue

Description

Invoked when the user hits continue shopping from the cart

Script

gs.include("PrototypeServer");

var CatalogTransactionContinue = Class.create();
CatalogTransactionContinue.prototype = {
  initialize : function(request, response) {
  	this.request = request;
  	this.response = response;
  },
  
  execute : function() {
  	return GlideappCatalogURLGenerator.getContinueShoppingUrl(this.request.getParameter("sysparm_catalog"), this.request.getParameter("sysparm_catalog_view"));
  }
}

Sys ID

8fae192ac0a80027009bdb4d19a53dce

Offical Documentation

Official Docs: