I have developed a wizard in my new module. In OpenERP v7 the wizard will refresh the main form after it closed.
I used return {'type': 'ir.actions.act_window_close'} to close the wizard. But in Odoo v8, it do not refresh. I have read some forum with same problem and they used return {'type': 'ir.actions.client', 'tag': 'reload' } to reload page. But it make the process heavy and need extra time. Any solution or advice for this problem ? Thank you for your best help.
If by main form you mean the one in your home page, have you tried: {'type': 'ir.actions.client', 'tag': 'home' }?
No.. I mean main form is the current form :D.. I have gotten the answer. I will post below.. Thank u Pau.