AngularJS - "Please select an item from the list" - Where is it from?

I am puzzled. In my form, through the submit button having the attribute:

ng-disabled = "templateForm. $ invalid"

and my choice is required

I get an unwanted popup asking "Please select an item from the list . "

I searched the whole application and almost as much as I am sure I have no deleted links.

Does anyone know where this comes from, and how can I stop / override / disable it?

Thanks.

Using Galdo Help:

<form id="addForm" ng-submit="doSomething()" name="templateForm" novalidate> 

Did the trick.

+4
source share
1 answer

Add the novalidate tag to your form like this

 <form novalidate> 

This will prevent the browser from performing its own form validation using the required attribute.

+9
source

All Articles