You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.2 KiB

  1. Client side message boxes
  2. =========================
  3. This module allows to show a message popup on the client side as result of a button.
  4. Usage
  5. =====
  6. Depend on this module and return
  7. .. code:: python
  8. {
  9. 'type': 'ir.actions.act_window.message',
  10. 'title': 'My title',
  11. 'message': 'My message'
  12. }
  13. You are responsible for translating the messages.
  14. * https://www.odoo.com/forum/help-1
  15. Known issues / Roadmap
  16. ======================
  17. * add `message_type` to differenciate between warnings, errors, etc.
  18. * have one `message_type` to show a nonmodal warning on top right
  19. * have `button_title` to set the button title
  20. * have `buttons` containing button names and action definitions for triggering actions from the message box
  21. Credits
  22. =======
  23. Contributors
  24. ------------
  25. * Holger Brunn <hbrunn@therp.nl>
  26. Maintainer
  27. ----------
  28. .. image:: http://odoo-community.org/logo.png
  29. :alt: Odoo Community Association
  30. :target: http://odoo-community.org
  31. This module is maintained by the OCA.
  32. OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
  33. To contribute to this module, please visit http://odoo-community.org.