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

I am trying to output ltr/rtl variable lang_direction in qweb tamplate like this:

            <xpath expr="//html" position="attributes">
                <attribute name="dir"><t t-esc="lang_direction"/></attribute>
            </xpath>            

This is not working. Is there a way to do it?

 

อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

I used t-att-$name instead of t-attf

So it should be


<xpath expr="//html" position="attributes">

        <attribute t-if="lang_direction == 'ltr'" name="t-attf-dir">ltr</attribute>

        <attribute t-if="lang_direction == 'rtl'" name="t-attf-dir">rtl</attribute>

</xpath>

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

Hello Akram,

What about a workaround like the following:

<xpath expr="//html" position="attributes">
        <attribute t-if="lang_direction == 'ltr'" name="dir">ltr</attribute>
        <attribute t-if="lang_direction == 'rtl'" name="dir">rtl</attribute>
</xpath>   

อวตาร
ละทิ้ง

Can we only set an attribute with xpath? Can we set it directly?