def deleteQuoteItem():
if db(db.quotation.id == request.args(0, cast=int)).delete():
if db(db.quotation.id is not None):
redirect(URL('View_Quotation', args=(session.detailsQuote.id)))
else:
redirect(URL('registeredClients'))
return locals()
{{=A('Delete',callback=URL('deleteQuoteItem', args=quote.id))}}
--
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+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/bb3b7374-b5f2-4e07-9d84-ee4a2e91c716%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to web...@googlegroups.com.
A
This helper is used to build links.
>>> print A('<click>', XML('<b>me</b>'), _href='http://www.web2py.com') <a href='http://www.web2py.com'><click><b>me</b></a>
Instead of _href
you can pass the URL using the callback
argument. For example in a view:
{{=A('click me', callback=URL('myaction'))}}
and the effect of pressing the link will be an ajax call to "myaction" instead of a redirection. In this case, optionally you can specify two more arguments: target
and delete
:
{{=A('click me', callback=URL('myaction'), target='t')}} <div id="t"><div>
and the response of the ajax callback will replace the content (inner HTML) of the DIV with id equal to "t".
<div id="b">{{=A('click me', callback=URL('myaction'), delete='div#b')}}</div>
and upon response, the closest tag matching "div#b" will be deleted. In this case, the whole DIV with the link will be deleted.
A typical application is:
{{=A('click me', callback=URL('myaction'), delete='tr')}}
in a table. Using the link will perform the callback and delete the table row.
target
and delete
can be combined.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/7bb08f29-f1a6-45b5-abfb-1b5542be79ac%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/7bb08f29-f1a6-45b5-abfb-1b5542be79ac%40googlegroups.com.