Hi,
I have this code:
def something():
.......
def mylink(field, type, ref):
.......
print ">>>I am in mylink at row %s" % str(field)
.......
return URL(r=request,f='something')
SQLTABLE( rows,
........
linkto=mylink)
.......I can see mylink called for every row in rows-set when I load controller function. Is this behaviour correct? I supposed that mylink was called only when I click on row-id. Thanks in advance leone

