[open-ils-commits] r17767 - trunk/Open-ILS/web/js/ui/default/vandelay (senator)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Sep 17 13:11:21 EDT 2010
Author: senator
Date: 2010-09-17 13:11:18 -0400 (Fri, 17 Sep 2010)
New Revision: 17767
Modified:
trunk/Open-ILS/web/js/ui/default/vandelay/vandelay.js
Log:
Fix a glitch where you could only edit one field in 'Edit Attributes' in
Vandelay before it stopped working.
Modified: trunk/Open-ILS/web/js/ui/default/vandelay/vandelay.js
===================================================================
--- trunk/Open-ILS/web/js/ui/default/vandelay/vandelay.js 2010-09-17 17:11:03 UTC (rev 17766)
+++ trunk/Open-ILS/web/js/ui/default/vandelay/vandelay.js 2010-09-17 17:11:18 UTC (rev 17767)
@@ -1170,7 +1170,7 @@
var store = new dojo.data.ItemFileReadStore({data:_data});
attrEditorGrid.setStore(store);
- dojo.connect(attrEditorGrid, 'onRowDblClick', onAttrEditorClick);
+ attrEditorGrid.onRowDblClick = onAttrEditorClick;
attrEditorGrid.update();
}
More information about the open-ils-commits
mailing list