Index: openacs-4/packages/xowiki/tcl/bootstrap-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/bootstrap-procs.tcl,v diff -u -N -r1.11.2.11 -r1.11.2.12 --- openacs-4/packages/xowiki/tcl/bootstrap-procs.tcl 30 Sep 2019 07:27:48 -0000 1.11.2.11 +++ openacs-4/packages/xowiki/tcl/bootstrap-procs.tcl 3 Feb 2020 11:31:53 -0000 1.11.2.12 @@ -418,6 +418,7 @@ Class create BootstrapTableRenderer \ -superclass TABLE3 \ -instproc init_renderer {} { + ns_log notice "INIT BootstrapTableRenderer " next set :css.table-class "table table-striped" set :css.tr.even-class even @@ -450,7 +451,8 @@ foreach field [[self]::__columns children] { if {[$field hide]} continue if {[$field istype HiddenField]} continue - html::td [concat [list class list] [$field html]] { + set CSSclass [list "list" {*}[$field CSSclass]] + html::td [concat [list class $CSSclass] [$field html]] { $field render-data $line } }