From 97da6c9d0159ed19fe5b7f998ca6d98c98b962c3 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Tue, 1 May 2012 10:41:06 +0200 Subject: [PATCH] provide css class attribute for report fields --- composer/report/field.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/composer/report/field.py b/composer/report/field.py index 8340c8c..010013b 100644 --- a/composer/report/field.py +++ b/composer/report/field.py @@ -50,6 +50,7 @@ class Style(object): def items(self): return self.data.items() + class TableCellStyle(Style): initData = { @@ -76,6 +77,7 @@ class Field(Component): output = None outputWith = () style = TableCellStyle() + cssClass = '' executionSteps = ['query', 'sort', 'output'] # , 'totals']