I have a very simple model

db.define_table('ding',
                Field('beschreibung'),
                Field('bild','upload')
                )


a simple function

def snap():
    form=SQLFORM(db.ding, None, deletable=True, upload=URL('download'))
    if form.process().accepted:
        response.flash="Fertig"
    elif form.errors:
        response.flash="Fehler"
    return dict(form=form)


​and a view

{{#extend 'layout.html'}}
{{extend 'plugin_jqmobile/layout.html'}}
<h1>SNAP</h1>
{{=form}}​


​With layout.html ​everything is fine, but with plugin_jqmobile the upload
finishes after a second with no error message but also with no new uploaded
file in the database.

Any ideas?
Regards Martin

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to