Commit b3f041f7 authored by Jérome Perrin's avatar Jérome Perrin

always render the wheel


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36927 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4cf1326c
...@@ -261,7 +261,15 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, ...@@ -261,7 +261,15 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget,
sub_html_string = widget_instance.render(field, key, sub_html_string = widget_instance.render(field, key,
value_instance, REQUEST) value_instance, REQUEST)
if relation_item_list is not None: if relation_item_list is not None:
if relation_item_list != []: ####################################
# Render wheel
####################################
sub_html_string += self.render_wheel(
field, value_instance, REQUEST,
relation_index=relation_field_index,
sub_index=sub_index)
if relation_item_list:
#################################### ####################################
# Render listfield # Render listfield
#################################### ####################################
...@@ -272,16 +280,7 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, ...@@ -272,16 +280,7 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget,
field, relation_field_id, None, REQUEST) field, relation_field_id, None, REQUEST)
REQUEST['relation_item_list'] = None REQUEST['relation_item_list'] = None
html_string_list.append(sub_html_string)
else:
####################################
# Render wheel
####################################
sub_html_string += self.render_wheel(
field, value_instance, REQUEST,
relation_index=relation_field_index,
sub_index=sub_index)
html_string_list.append(sub_html_string)
#################################### ####################################
# Generate html # Generate 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