From df2e455598cd4dc1f75f26828fb08ce8f42ade8e Mon Sep 17 00:00:00 2001 From: pines Date: Wed, 11 Apr 2007 20:43:33 +0000 Subject: [PATCH] disable auto-select to prevent a bug.. the problem here is that some of the actions require data that becomes available after fleshing of the rows, and the rows are getting selected before they're fleshed. A solution would be to have a completed flesh fire an on_select event to sync the selected data git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_0_4@7145 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/patron/items.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/patron/items.js b/Open-ILS/xul/staff_client/server/patron/items.js index 2bd2cb524f..64caea1845 100644 --- a/Open-ILS/xul/staff_client/server/patron/items.js +++ b/Open-ILS/xul/staff_client/server/patron/items.js @@ -182,7 +182,7 @@ patron.items.prototype = { fake_copy.barcode( '' ); fake_copy.circ_lib( nc_circ.circ_lib() ); - obj.list.append( { 'row' : { 'my' : { 'circ' : fake_circ, 'mvr' : fake_record, 'acp' : fake_copy } }, 'to_bottom' : true } ); + obj.list.append( { 'row' : { 'my' : { 'circ' : fake_circ, 'mvr' : fake_record, 'acp' : fake_copy } }, 'to_bottom' : true, 'no_auto_select' : true } ); } catch(F) { obj.error.standard_unexpected_error_alert('Error showing NonCat #' + robj[ii].id(),F); -- 2.11.0