From: Jason Etheridge Date: Tue, 1 Oct 2013 20:21:58 +0000 (-0400) Subject: modify list.js X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dc5aaff9568005e6104da8694f33afc135d5f7ef;p=working%2FEvergreen.git modify list.js --- diff --git a/Open-ILS/xul/staff_client/chrome/content/util/list.js b/Open-ILS/xul/staff_client/chrome/content/util/list.js index d4e5039b08..ba97924fc3 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/list.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/list.js @@ -1348,6 +1348,16 @@ util.list.prototype = { this.node.view.selection.selectAll(); }, + 'retrieve_selection_retrieval_data' : function(params) { + var obj = this; + return util.functional.map_list( + obj.retrieve_selection(params), + function(el,idx) { + return JSON2js( el.getAttribute('retrieve_id') ); + } + ); + }, + 'retrieve_selection' : function(params) { var obj = this; switch(this.node.nodeName) {