From: Kathy Lussier Date: Thu, 25 Feb 2016 04:33:51 +0000 (-0500) Subject: LP1402770: Do not show Holds Count by default in most item screens X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6687b1bc4bd4c4039e31bd758f6bd7d9ba3dbfbd;p=evergreen%2Fmasslnc.git LP1402770: Do not show Holds Count by default in most item screens The Holds Count columns was displaying by default in many xul item interfaces where this info may not be as useful for staff. Let's hide them by default in most column pickers, and only display it by default in the patron's Items Out tab. Signed-off-by: Kathy Lussier Signed-off-by: Ben Shum --- diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 3c9bff8ff1..d2db606b7d 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -598,7 +598,7 @@ circ.util.columns = function(modify,params) { 'label' : 'Holds Count', 'flex' : 1, 'primary' : false, - 'hidden' : false, + 'hidden' : true, 'editable' : false, 'render' : function(my) { return network.simple_request("FM_CIRC_HAS_HOLDS_COUNT_RETRIEVE_VIA_COPY",[ ses(), my.acp.id() ] ); }