>
> links = [lambda ro
> w: A('Details',_href=URL('default','show', args=[row.slug]))]
> fields = [db.equipment.category, db.equipment.title,
> db.equipment.price]
>
You have not include "slug" in your list of fields, so I believe it will
not be included in the data query. Instead of specifying the list of
fields, you can set the readable attribute to False for fields you don't
want displayed (including "slug"). In that case, all fields will be
included in the query (including "slug"), but only the fields you want to
show will be visible in the grid.
Anthony
--