web/htmlwidgets.py
branchstable
changeset 8126 a4d8064bf393
parent 6800 3f3d576b87d9
child 9781 f5728fc3c486
--- 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'<tr class="%s" %s>' % (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'<td %s>' % (' '.join(attrs)))
                 for cellvid, colindex in column.cellrenderers: