Skip to content

Instantly share code, notes, and snippets.

@joacim-boive
Created March 29, 2011 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joacim-boive/892288 to your computer and use it in GitHub Desktop.
Save joacim-boive/892288 to your computer and use it in GitHub Desktop.
Using XPages for Domino.
var cart = sessionScope.cart || [],
item = {};
item.unid = rowData.getColumnValue('unid');
item.price = viewScope.price;
item.title = rowData.getColumnValue('title');
cart.push(item);
sessionScope.cart = cart;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment