Fix a glitch where you could only edit one field in 'Edit Attributes' in
authorsenator <senator@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 17 Sep 2010 17:11:18 +0000 (17:11 +0000)
committersenator <senator@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 17 Sep 2010 17:11:18 +0000 (17:11 +0000)
Vandelay before it stopped working.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@17767 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/web/js/ui/default/vandelay/vandelay.js

index 2f923a4..f513b7e 100644 (file)
@@ -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();
 }