Thanks, that worked. I just added db.equipment.slug to the fields
On Thursday, August 23, 2012 1:18:16 AM UTC-6, Anthony wrote:
>
> 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 included "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
>
--