There's also another suggestion
The crud.update() forms doesn't display the 'record deleted message'
flash message in case of deleting records
instead it displays 'record updated'
in function update of the Crud class I suggest adding :
if form.accepts(request.post_vars, _session, formname=_formname,
onvalidation=onvalidation,
keepvalues=self.settings.keepvalues):
if form.vars.get('delete_this_record', False):
message = self.messages.record_deleted
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en.