Hello, I have just installed the dropdown plugin. It works well except for list:reference fields.
I have just modified the models/plugin_dropdown.py file:
def create():
table,field = request.args(0).split('.')
# MODIF
field_tablename = db[table][field].type.split(' ')[1]
refereed=db[db[field_tablename]]
#refereed=db[db[table][field].type[10:]]
# END MODIF
...
I is probably just an uggly hack. Hope it could help.
Regards,
Thomas

