Commit 9bd443af authored by Jérome Perrin's avatar Jérome Perrin

Listbox: make a link for editable field that are not configured as editable

parent f1dd114f
......@@ -2527,7 +2527,7 @@ class ListBoxHTMLRendererLine(ListBoxRendererLine):
if url is None:
html = cell_html + error_message
else:
if editable:
if editable and listbox_defines_column_as_editable:
html = u'%s' % cell_html
else:
html = u'<a href="%s">%s</a>' % (url, cell_html)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment