LP1402770: Do not show Holds Count by default in most item screens user/kmlussier/LP1402770_column_picker_option_for_number_of_holds
authorKathy Lussier <klussier@masslnc.org>
Thu, 25 Feb 2016 04:33:51 +0000 (23:33 -0500)
committerKathy Lussier <klussier@masslnc.org>
Thu, 25 Feb 2016 04:33:51 +0000 (23:33 -0500)
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 <klussier@masslnc.org>
Open-ILS/xul/staff_client/server/circ/util.js

index 3c9bff8..d2db606 100644 (file)
@@ -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() ] );
                }