I’d like to display a popup message box when a field is updated.
I tried in the same way that the one in tytond docs, but nothing appends in both clients.
What am I doing wrong ?
from trytond.bus import notify
...
def on_change_field(self):
if some_checks:
notify('Title','Body...')