[web2py] show a wait message until the form.accepts completes.

2012-12-31 Thread Pradeeshnarayan
In my Web2py application I have a form form = FORM( INPUT(_type='text') ... ... ,_ajax=True ) if form.accepts(request,session): do something # This action will take some time to complete, So I need a waiting message in users view, until this action completes I would greately

Re: [web2py] show a wait message until the form.accepts completes.

2012-12-31 Thread Bruno Rocha
AFAIK, putting _ajax=True will render your form with form ajax=True / as web2py FORM helpers does not have anything implemented for this _ajax attribute I guess you are using some JavaScript library to detect that your form is an ajax form? --