From 68fe99cf5642c16ead080b4ba151832eb1786f11 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke <kevin@nexedi.com> Date: Thu, 20 Jul 2006 10:57:31 +0000 Subject: [PATCH] Return the editable_field in rendered html list to help me do aesthetic decision within a custom page template to rendre very custom listbox. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8623 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Form/ListBox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product/ERP5Form/ListBox.py b/product/ERP5Form/ListBox.py index a17a3517ba..7d0b6bdca9 100644 --- a/product/ERP5Form/ListBox.py +++ b/product/ERP5Form/ListBox.py @@ -1977,7 +1977,7 @@ class ListBoxHTMLRendererLine(ListBoxRendererLine): else: html = u'<a href="%s">%s</a>' % (url, processed_value) - html_list.append((html, original_value, error)) + html_list.append((html, original_value, error, editable_field)) return html_list -- 2.30.9