Is there a way to use checkValidity() setCustomValidity() within ember? For example, in my controller upon submission I have:
var inpObj = this.get('name');
if (inpObj.checkValidity() == false) {
alert('ok');
}
and of course this is my…
Heyho guys!
I have some street field which should normally includes the house number, so i want check the field if it contains characters and numbers (0-9). If both are right, the input is correct. Btw, i don't want use regex. Would be awesome, when…
Almost two weeks that my students and I are trying to find a solution on a trivial problem.
We want to calculate the distance between two GPS points avoiding the coast according to this tutorial:…