Is there anything to do to make smartgrid usable on the android phone? (not sure how it behaves on iPhone)
Thanks,Adnan
I met the same problem and found a solution. I changed the id field into a button, and actually, any fields can be buttons or links in the grid.
For example:
db.person.id.represent=lambda id,r: DIV(A('View',_class='button',_href=URL('table',args=['person','view','person',r.id])), _class='row_buttons')
db.person.name.represent=lambda name,r: A(r.name,_href=URL('table',args=['person','edit','person',r.id]))