Skip to Content
Menu
This question has been flagged
2 Replies
14985 Views

Hello,

Any one know how to force relaod of page where i save record with the save button ( write function). I tried the return { 'target':'ir.actions.client', 'tag':'reload'} but it dosnt work.

Thanks.

Avatar
Discard
Best Answer

try:

return {
                'type': 'ir.actions.client',
                'tag': 'reload',
                }

instead of 'target' use 'type'

Avatar
Discard
Best Answer

where do you put this code

Avatar
Discard