Hi Friends.
I want to inherit kanban view from Products and want to make field Price Invisible from my custom Module.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi Friends.
I want to inherit kanban view from Products and want to make field Price Invisible from my custom Module.
Hi please define ir.ui.view and
<field name="arch" type="xml">
<xpath expr="/kanban/templates/field[@name='date_deadline']" position='attributes'>
<attribute name="invisible">1</attribute>
</xpath>
</field>
Thanks
Hi,
same issue
how can i put rating field readonly
this code don't work:
```
<record model="ir.ui.view" id="crm_lead1_kanban_view">
<field name="name">Opportunities1 kanban</field>
<field name="model">crm.lead</field>
<field name="type">kanban</field>
<field name="inherit_id" ref="crm.crm_case_kanban_view_leads" />
<field name="arch" type="xml">
<xpath expr="//field[@name='priority']" position="attributes">
<attribute name="readonly">1</attribute>
</xpath>
</field>
</record>
```
```
<xpath expr="//t/div/div/div/field[@name='priority']" position="attributes">
<attribute name="readonly">1</attribute>
</xpath>
```
i try also:
```
<field name="type">form</field> instead <field name="type">kanban</field>
```
I try also to set field readonly directly from the debugger view kanban but still not working!
the new question, is it possible to set attrs to fields in view kanban? ot i must overide field throught python model
with no result,i try also:
```
<xpath expr="//div[contains(@class, 'o_kanban_footer')]/field[@name='priority']" position="attributes">
```
the path is correct, i can change field by:
```
<xpath expr="//div[contains(@class, 'o_kanban_footer')]/field[@name='priority']" position="replace">
<field name="priority"/>
</xpath>
```
so can i change attributes also!?
thx
Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!
Регистрация| Похожие посты | Ответы | Просмотры | Активность | |
|---|---|---|---|---|
|
2
мая 18
|
4365 | |||
|
2
апр. 17
|
3997 | |||
|
1
мая 16
|
4382 | |||
|
1
мая 16
|
13416 | |||
|
1
мар. 15
|
13096 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.