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 appreciate any suggestion.


-- 



Reply via email to