From: senator Date: Fri, 17 Sep 2010 17:11:18 +0000 (+0000) Subject: Fix a glitch where you could only edit one field in 'Edit Attributes' in X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fc2f63ef098fb381da57f78bd99d1a7ed8ba9533;p=evergreen%2Ftadl.git Fix a glitch where you could only edit one field in 'Edit Attributes' in Vandelay before it stopped working. git-svn-id: svn://svn.open-ils.org/ILS/trunk@17767 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js index 2f923a4d5f..f513b7e693 100644 --- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js +++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js @@ -1170,7 +1170,7 @@ function loadAttrEditorGrid() { var store = new dojo.data.ItemFileReadStore({data:_data}); attrEditorGrid.setStore(store); - dojo.connect(attrEditorGrid, 'onRowDblClick', onAttrEditorClick); + attrEditorGrid.onRowDblClick = onAttrEditorClick; attrEditorGrid.update(); }