Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
1 Antworten
439 Ansichten



I want to change Log note button text. this chatter is available on right section of helpdesk ticket. I appreciate if someone help me out in this 

Avatar
Verwerfen
Beste Antwort

Hi,


Try with the following code.


<templates>
<t t-name="important.Chatter" t-inherit="mail.Chatter"
t-inherit-mode="extension">
<xpath expr="//*[contains(@class, 'o-mail-Chatter-logNote')]"
position="replace">
<button t-if="props.hasMessageList" class="o-mail-Chatter-logNote btn text-nowrap me-1" t-att-class="{
'btn-primary active': state.composerType === 'note',
'btn-secondary': state.composerType !== 'note',
'my-2': !props.compactHeight
}" data-hotkey="shift+m" t-on-click="() => this.toggleComposer('note')">
Your Button Name
</button>
</xpath>
</t>
</templates>


Reference:


-https://www.cybrosys.com/blog/how-to-add-a-custom-button-to-the-chatter-in-odoo-18


Hope it helps

Avatar
Verwerfen
Autor

Thanks for your timely response. The above code hides the Log note button .

Autor

Its now working. Just need to remove t-if="props.hasMessageList" . Thanks a million for your support. I appreciate.

Verknüpfte Beiträge Antworten Ansichten Aktivität
2
Juli 25
508
1
Mai 25
1035
2
Nov. 24
4073
0
Nov. 23
1188
1
Apr. 22
5524