# HG changeset patch # User Sylvain Thénault # Date 1323431842 -3600 # Node ID a4d8064bf3939b9bb408ad1ad74648f8a6106b41 # Parent acc23c2844321eb2919e5fc2708774188ff8ad04 [tableview] cubicweb:sortvalue should not have 'json:' in its value anymore. This breaks old tables. diff -r acc23c284432 -r a4d8064bf393 web/htmlwidgets.py --- a/web/htmlwidgets.py Fri Dec 09 12:08:44 2011 +0100 +++ b/web/htmlwidgets.py Fri Dec 09 12:57:22 2011 +0100 @@ -350,7 +350,7 @@ self.w(u'' % (klass, self.highlight)) for column, sortvalue in self.itercols(rowindex): attrs = dict(column.cell_attrs) - attrs["cubicweb:sortvalue"] = 'json:' + sortvalue + attrs["cubicweb:sortvalue"] = sortvalue attrs = ('%s="%s"' % (name, value) for name, value in attrs.iteritems()) self.w(u'' % (' '.join(attrs))) for cellvid, colindex in column.cellrenderers: