My model has two tables:
db.define_table('tag', Field('name'))
db.define_table('data', Field('title'), Field('tags','list:reference
tag'))

My view for data table has a callback:
{{=form}}
...
ajax(".../tagcallback", ["tags"], ...)

In my tagcallback controller:
tags = request.vars.tags
...

It seems that tags is not a list type anymore and the '|' separators
are gone. How do I approach this so that I can do list operations on
the tags in my tagcallback controller?

Reply via email to