>
> Controller:
>
>> def delete():
>>     """
>>     Deletes an external medic record in the database
>>     :return:
>>     """
>>     from dao import DAOExternalMedic
>>     DAOExternalMedic().delete(request.args[0])
>>     session.flash = "Record deleted"
>>     # response.js = "jQuery('#%s').reload()" % DivEnums.MAINGRID
>>     url = URL('external_medics', 'w_manage.load')
>>     response.js = "web2py_component('%s','%s');" % (url, DivEnums.MAINGRID)
>>     redirect(URL('index'))
>>     return
>>
>>
I think the problem is that you are doing a redirect before the function 
returns, so the JS code never makes it to the browser. Presumably the 
delete() function is called via Ajax, so why does it redirect to 'index' 
anyway?

Anthony

-- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to