[open-ils-commits] r15594 - trunk/Open-ILS/web/js/dojo/openils/widget (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Feb 18 23:05:02 EST 2010


Author: erickson
Date: 2010-02-18 23:05:00 -0500 (Thu, 18 Feb 2010)
New Revision: 15594

Modified:
   trunk/Open-ILS/web/js/dojo/openils/widget/AutoWidget.js
Log:
treat virtual fields and non-IDL fields different in the auto-widget universe.  as a result, autogrid can sort non-IDL fields in with IDL fields based on explicit sort order

Modified: trunk/Open-ILS/web/js/dojo/openils/widget/AutoWidget.js
===================================================================
--- trunk/Open-ILS/web/js/dojo/openils/widget/AutoWidget.js	2010-02-19 00:41:38 UTC (rev 15593)
+++ trunk/Open-ILS/web/js/dojo/openils/widget/AutoWidget.js	2010-02-19 04:05:00 UTC (rev 15594)
@@ -48,7 +48,7 @@
                             self.sortedFieldList.push(field)
                         } else {
                             // non-IDL field
-                            self.sortedFieldList.push({name : name, virtual:true});
+                            self.sortedFieldList.push({name : name, nonIdl:true});
                         }
                     }
                 );



More information about the open-ils-commits mailing list