update interact now that SelectionWidget.values is a dict

This commit is contained in:
MinRK 2014-02-03 16:43:35 -08:00
parent 88fb17b182
commit feab63754d

View File

@ -67,10 +67,9 @@ def _widget_abbrev_single_value(o):
if isinstance(o, string_types):
return TextWidget(value=unicode_type(o))
elif isinstance(o, dict):
labels = [unicode_type(k) for k in o]
values = o.values()
w = DropdownWidget(value=values[0], values=values, labels=labels)
return w
# get a single value in a Python 2+3 way:
value = next(iter(o.values()))
return DropdownWidget(value=value, values=o)
elif isinstance(o, bool):
return CheckboxWidget(value=o)
elif isinstance(o, float):