From 6687b1bc4bd4c4039e31bd758f6bd7d9ba3dbfbd Mon Sep 17 00:00:00 2001 From: Kathy Lussier Date: Wed, 24 Feb 2016 23:33:51 -0500 Subject: [PATCH] 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 --- Open-ILS/xul/staff_client/server/circ/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ] ); } -- 2.43.2