From e76b41d34bcdf17bd6a2545c914c7e9d9c358116 Mon Sep 17 00:00:00 2001 From: Aaron Bohy Date: Tue, 11 Feb 2025 09:28:55 +0100 Subject: [PATCH] [IMP] developer/../view_architectures: add `overflow` option This commit documents the new `overflow` option of the calendar view. Associated PR: odoo/odoo#197274 Task-4564270 --- .../user_interface/view_architectures.rst | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/content/developer/reference/user_interface/view_architectures.rst b/content/developer/reference/user_interface/view_architectures.rst index 0f1891899..c17a8e12f 100644 --- a/content/developer/reference/user_interface/view_architectures.rst +++ b/content/developer/reference/user_interface/view_architectures.rst @@ -3292,15 +3292,17 @@ Their root element is ````. Available attributes on the root node are: :type: bool :default: False -.. attribute:: event_open_popup +.. attribute:: month_overflow :noindex: - If true, open events in dialog to edit them, otherwise, open them in a - classical form view. + By default, in month mode, the last days of the previous month and the first + days of the next months are displayed, as well as their events. This option + allows to disable this such that those sibling days are greyed out and their + events aren't displayed. :requirement: Optional :type: bool - :default: `False` + :default: `True` .. attribute:: show_date_picker :noindex: @@ -3313,6 +3315,16 @@ Their root element is ````. Available attributes on the root node are: :type: bool :default: `True` +.. attribute:: event_open_popup + :noindex: + + If true, open events in dialog to edit them, otherwise, open them in a + classical form view. + + :requirement: Optional + :type: bool + :default: `False` + .. attribute:: form_view_id :noindex: