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

Hi All,

I have create a webform where I'll get 10 inputs for the customer and want to make first 5 input fields to be mandetory and other 5 is optional.



I'm trying to do with a-ttf-class but is not working.



can anyone help me on this?

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

Please try this one...
t-attf-class="form-control {{ 'required' if i <= 5 else '' }}"
Thanks & Regards

อวตาร
ละทิ้ง
ผู้เขียน

Not working
I'm asking v17

I have tried it in v17
this above is for only adding your class "clsrequired" for first 5 field

if you want to add required attribute for first 5 field then you have to try below code
<t t-if="i &lt;= 5">
<div class="form-group">
<input type="text" t-attf-id="field_#{i}"
class="form-control"
required="1"/>
</div>
</t>
<t t-else="">
<div class="form-group">
<input type="text" t-attf-id="field_#{i}"
class="form-control"/>
</div>
</t>

Thanks & regards

ผู้เขียน

Thanks Yatrik

Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ม.ค. 22
2398
1
มี.ค. 25
1210
0
พ.ย. 24
1435
0
มิ.ย. 24
1501
1
มิ.ย. 24
1987