Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
11310 มุมมอง

How we can add the below chatter widget inside form view??

<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_attachment"/>
</div>

Community v-13


อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi Fasil,

If you want to add chatter in your object, then you will have to inherit the "mail.thread" object in your object as follow:

class MyClass(models.Model):
_name = 'my.class'
_inherit = ['mail.thread']

Now, add chatter widget in your form view in XML as follow:

        <record id="view_my_class_form" model="ir.ui.view">
<field name="name">my.class.form</field>
<field name="model">my.class</field>
<field name="arch" type="xml">
<form>
<sheet>
.....
</sheet>
</form>
<!-- Add chatter and followers widget -->
<div class="oe_chatter">
<!-- Followers view -->
<field name="message_follower_ids" widget="mail_followers"/>
<!-- Chatter view -->
<field name="message_ids" widget="mail_thread"/>
</div>
</record>


อวตาร
ละทิ้ง
ผู้เขียน

Thank you Sudhir for respond.

But how we can do this inside form??

คำตอบที่ดีที่สุด

just add that div inside any group tag under your form...  
See  Below  example:

group
div
strongAttachments & URLs div
div class="oe_chatter"
field name="message_follower_ids" widget="mail_attachment" string="Attachments"
div

group

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ก.พ. 25
1507
Chatter looks weird in 18.0 แก้ไขแล้ว
2
ธ.ค. 24
2482
0
พ.ย. 24
1499
1
ก.ค. 24
2218
2
มิ.ย. 24
6330