input form mandatory field
@1905403
how can we make a files mandatory in input form
i read the documenttation..
somewther mentioemd we need tk use leave tag
and some where mentioned we need to pit required=true
m confused
pelase help
@1905403
how can we make a files mandatory in input form
i read the documenttation..
somewther mentioemd we need tk use leave tag
and some where mentioned we need to pit required=true
m confused
pelase help
Hi @dishasharma ,
required="true" will make the field's label display in Red color font. But it will still allow empty value.
<leave> tag will make a field mandatory in input form by throwing an error pop-up when the field is empty.
Example,
<input label="Internal Name" required="true" xpath="@internalName"/>
<leave>
<check expr="@internalName !=''">
<error>Internal Name is Mandatory</error>
</check>
</leave>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.