I created a form, but I'm not sure why the field for the required attribute doesn't work. I'm using xml, hmtl and jquery. I've tried many options, including:
<label class="control-labels form-required" t-att-for="'author_'+widget.id">AUTORE*</label>
<input class="form-control" type="text" name="author" t-att-id="'author_'+widget.id" t-att-value="widget.author" required="required"/>
and
<label class="control-labels form-required" t-att-for="'author_'+widget.id">AUTORE*</label>
<input class="form-control" type="text" name="author" t-att-id="'author_'+widget.id" t-att-value="widget.author" required/>
What am I doing wrong?
From W3 documentation
Definition and Usage
The required attribute is a boolean attribute.
When present, it specifies that an input field must be filled out before submitting the form.
Note: The required attribute works with the following input types: text, search, url, tel, email, password, date pickers, number, checkbox, radio, and file.