This question has been flagged
1 Reply
27786 Views
Avatar
Discard
Best Answer

In general, it is used for template inheritance which used to select the particular Jquery selector's from template view. From documentation,

Template inheritance:

Template inheritance is used to alter existing templates in-place, e.g. to add information to templates created by an other modules.

Template inheritance is performed via the t-extend directive which takes the name of the template to alter as parameter.

The alteration is then performed with any number of t-jquery sub-directives:

<t t-extends="base.template">
     <t t-jquery="ul" t-operation="append">
         <li>new element</li>
     </t>
</t>

The t-jquery directives takes a CSS selector. This selector is used on the extended template to select context nodes to which the specified t-operation is applied:

append

the node’s body is appended at the end of the context node (after the context node’s last child)

prepend

the node’s body is prepended to the context node (inserted before the context node’s first child)

before

the node’s body is inserted right before the context node

after

the node’s body is inserted right after the context node

inner

the node’s body replaces the context node’s children

replace

the node’s body is used to replace the context node itself

No operation

if no t-operation is specified, the template body is interpreted as javascript code and executed with the context node as this

Syntax:

t-jquery=selector [t-operation=operation] BODY

Parameters:

  • selector (String) – a CSS selector into the parent template
  • operation – one of append, prepend, before, after, inner or replace.
  • BODY – operation argument, or alterations to perform

 

Avatar
Discard