web/views/tableview.py
changeset 10662 10942ed172de
parent 10612 84468b90e9c1
child 10666 7f6b5f023884
equal deleted inserted replaced
10661:e6eb0c7c2e98 10662:10942ed172de
  1144             elif coltype is not None and eschema(coltype).final:
  1144             elif coltype is not None and eschema(coltype).final:
  1145                 column.append_renderer(self.finalview, colindex)
  1145                 column.append_renderer(self.finalview, colindex)
  1146             else:
  1146             else:
  1147                 column.append_renderer(subvid or 'incontext', colindex)
  1147                 column.append_renderer(subvid or 'incontext', colindex)
  1148             if cellattrs and colindex in cellattrs:
  1148             if cellattrs and colindex in cellattrs:
  1149                 for name, value in cellattrs[colindex].iteritems():
  1149                 for name, value in cellattrs[colindex].items():
  1150                     column.add_attr(name, value)
  1150                     column.add_attr(name, value)
  1151             # add column
  1151             # add column
  1152             columns.append(column)
  1152             columns.append(column)
  1153         return columns
  1153         return columns
  1154 
  1154