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

I know odoo provide attribue "attrs" that can modify invisible, readonly, etc. 
for example :


<div class="border border-budget-gap-plus rounded p-2" attrs="{'invisible':[('budget_gap','&gt;','0')]}">

   ..something..

</div>


But I just found that in report or any template can use t-att-class, t-if, t-else, etc


Why form view cannot use this? I tried using it like below


<div t-att-class="'border ' + (state === 'draft' ? 'border-budget-gap-minus' : 'border-budget-gap-plus') + ' rounded p-2'">

     <field name="state"/>

</div>


but the result is still using 'border-budget-gap-plus' even the state is not 'draft'. If the state is not 'state', it should be 'border-budget-gap-plus', right?


is my implementation wrong? or it's just Odoo that not allow this?

아바타
취소
베스트 답변

In Odoo, there's a bit of a distinction between how you can use dynamic attributes and expressions in different places within the system. When you're in the land of QWeb reports or website templates, you've got those handy t-att-*, t-if, t-else, and their pals to make your HTML as dynamic as a flash mob in Times Square. These directives are part of QWeb templating engine magic, which allows for a lot of dynamic content control based on conditions, loops, and variable content.

However, when you hop over the fence to the XML-based form views in the Odoo backend, the party rules change. Here, Odoo uses a different system to manage dynamics like visibility, editability, and so on. That's where attrs steps in! The attrs attribute in form views allows you to control the visibility, readonly status, and required status of form fields based on domain-like expressions.

Why can't you use t-att-class in form views? Well, it's because form views don't use the QWeb engine in the same way templates do. They have their own XML schema and set of rules. So, the form view engine won't recognize t-att-* or t-if/t-else directives. It's like trying to use HTML tags in a JSON file; the system just isn't built to understand those instructions in that context.

Odoo Beratung Deutschland

아바타
취소
관련 게시물 답글 화면 활동
2
3월 24
2880
1
5월 23
4054
1
3월 24
1802
0
11월 23
1554
2
9월 23
3631