Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
19079 Переглядів

Any body please explain me t-extend and t-jquery with a example in qweb reports

Аватар
Відмінити
Найкраща відповідь

t-extend is used to extend an existing template

You will see qweb templates in the base module like:

<t t-name="layout">
....
</t>

You can use <t t-extend="module_name.layout" > to extend these and insert new qweb elements.

<t t-jquery> is used to specify a postion.

For example,

<t t-name="layout">
<span class="some_class">Hello</span>
</t>

You could extend this by using:

<t t-jquery="span.some_class" t-operation="after">
</t>

t-jquery is usually used in conjuction with t-operation much like <xpath expr="" position="" /> 

Hope this helps.






Аватар
Відмінити

If you browse through some modules, you should get the hang of it. Let me know if you need more help.

Related Posts Відповіді Переглядів Дія
1
лип. 25
1899
1
трав. 25
1992
1
квіт. 25
2404
1
лют. 25
1695
0
жовт. 24
1458