콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
1372 화면

I am developing a custom module for Odoo18.

I what the following:

  1. Click on a record in a list view -> Opens Form popup
  2. In the Form popup I see Chatter.

p.s. The record I am clicking has:

_inherit = ["mail.thread"] 

How would I do it? At the moment I cannot see chatter in popup while it is shown when form is shown full screen (not popup).

아바타
취소
작성자 베스트 답변

Hi Anas, I have like in your example but it is not enough. I want to have chatter in Popup Form view.

아바타
취소
베스트 답변

Hello ,

Modify the Form View  :

<record id="view_form_your_model" model="ir.ui.view">

    <field name="name">your.model.form</field>

    <field name="model">your.model</field>

    <field name="arch" type="xml">

        <form string="Your Model Form">

            <sheet>

                <group>

                    <!-- Your fields go here -->

                </group>

            </sheet>

            <chatter/>

        </form>

    </field>

</record>



아바타
취소
관련 게시물 답글 화면 활동
0
7월 23
2938
2
8월 25
1353
2
7월 25
735
1
5월 25
1367
1
2월 25
1345