Hey, I've been trying to use crud.search for a table with many fields that reference other tables,
After failing I found: http://code.google.com/p/web2py/issues/detail?id=329 Which seems to be an old bug report saying this does not work. However, I glanced at the crud.search source code and at first sight it seems to care about reference fields. Doing things like: if field.type[0:10] == 'reference ': refsearch.append(self.get_query(field, opval, txtval, refsearch=True)) But it never works and I appear to get no results. Can anyone give me an example of how to do this?

