Hi!

Why this does not work:
Field('image', 'upload', requires=IS_NOT_EMPTY(), uploadseparate=True,
autodelete=True,),
    Field('image_filename', readable=False, writable=False, compute =
lambda row: row.image.filename),

Using a form I can follow the book and fill the image filename:
    if request.vars.image!=None:
        try:
            form.vars.image_filename = request.vars.image.filename
        except:
            form.vars.image_filename = request.vars.image

How can I do the same using SQLFORM.grid?

Regards,

Tito

-- 

Linux User #387870
.........____
.... _/_õ|__|
..º[ .-.___.-._| . . . .
.__( o)__( o).:_______

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to