7 答案
Just Zoom in and Zoom out your browser, The chatter will move down if you zoom in. It actually depends upon the screen resolution.
Matt,
It depends on the size of your screen. You can do Zoom in and Zoom out to find the changing of Chatter Position side and down automatically.
Zoom In
Zoon Out
yes it's very simple, you can just add this line in css
.o_form_view { flex-direction: column !important;}.
@Moto Dzae, There is many ways to Move the chatter to bottom in odoo 14 and here is one of them:
- Create a new Module and name it "whatever you want"
- Create a new .css File under Static/src/css/name_of_your_file.css
- In that File insert the following Code:
/* Move Chatter to bottom */
.o_FormRenderer_chatterContainer.o-aside {
width: -webkit-fill-available;
margin-bottom: 50px;
}
/* Move Chatter to bottom */
.o_form_view.o_xxl_form_view {
-webkit-flex-flow: unset;
flex-flow: wrap;
height: auto! important;
}- Create a new .xml File the name it assets.xml and insert this File in the Manifest of the Module under data => 'data': ['views/assets.xml',]
- inherit from web.assets_backend and link your css file as stylesheet like this https://github.com/odoo/odoo/blob/14.0/addons/google_drive/views/google_drive_templates.xml#L4
- inside the tag insert your module name and the path to your css file.
Now install that Module and Enjoy the Chatter being in the Bottom
Hope That helps you all out
It depends on the size of the screen, when your screen resolution high, it will go on the right:
when it is low, it will go bottom:
HI,
Below APP will help you to move your Chatter Position from Left-Side to Bottom in Enterprise/Community ODOO.
https://apps.odoo.com/apps/modules/14.0/ob_chatter_position/
Thanks & Regards
Sunny Sheth
I have my answer.
The code was most likely copied from OCA module web_responsive where the feature was implemented in 2018
https://github.com/OCA/web/commit/e5e109ece655ae4cfb2a81e9eb130852eb106554
@Sunny you can use this code and push it to apps.odoo.com but you must keep the license to AGPL and keep the license headers on the files.
Is it available for 14.0?