I want to add class only when $_first evaluated to true
Example:
<div t-attf-class="carousel-item {{ $_first }}">
To be:
Incase True: <div t-attf-class="carousel-item active">
Incase of false: <div t-attf-class="carousel-item">
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I want to add class only when $_first evaluated to true
Example:
<div t-attf-class="carousel-item {{ $_first }}">
To be:
Incase True: <div t-attf-class="carousel-item active">
Incase of false: <div t-attf-class="carousel-item">
Try this one
<t t-foreach="records" t-as="rec"> <div t-attf-class="carousel-item #{ rec_first and 'active' or '' }"> </div> </t>it is not $_first you should replace $ with the value of t-as
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Mar 24
|
274 | ||
|
0
Oct 22
|
1489 | ||
|
0
Sep 22
|
660 | ||
|
1
Jul 22
|
4084 | ||
|
0
Jun 22
|
836 |
Thanks Parth, It's works.
Could you Please explain what the meaning of (and 'active' or ' ') and how odoo evaluate it