Author: eallen
Date: 2010-08-24 16:18:14 -0400 (Tue, 24 Aug 2010)
New Revision: 4220
Modified:
mgmt/newdata/cumin/python/cumin/grid/slot.py
Log:
Fix for BZ 626926: Set png slot vis order to System, Name.
Modified: mgmt/newdata/cumin/python/cumin/grid/slot.py
===================================================================
--- mgmt/newdata/cumin/python/cumin/grid/slot.py 2010-08-23 21:03:20 UTC (rev 4219)
+++ mgmt/newdata/cumin/python/cumin/grid/slot.py 2010-08-24 20:18:14 UTC (rev 4220)
@@ -48,6 +48,9 @@
self.where_exprs.default = exprs
+ def render_sql_order_by(self, session):
+ return "Order by \"System\",\"Name\""
+
class SlotView(CuminView):
def __init__(self, app, name, slot):
super(SlotView, self).__init__(app, name, slot)