The tag has no usage guidance.

learn more… | top users | synonyms

1
vote
4answers
121 views

Validating form on submit in angular

Hello i am trying to make my validation display on form submit but validation does not work, form gets sent anyway. This is my form: <form class="form-horizontal col-md-10" role="form" ...
1
vote
2answers
56 views

AngularJS dynamic Form does not get valid

I have a dynamic Form in AngularJS, the input tags get replaced according to question type selected by the user. So the problem is, when user left a input tag blank which is required and switched to ...
1
vote
1answer
27 views

Prevent async unique validator to validate same value only when editing?

I've got an AngularJS form that has a custom validator to check with the server backend whether the input value is unique or not. The unique validation is done by the mob-async-validate-unique ...
0
votes
1answer
36 views

Ionic: Accessing from object in controller of the custom modal form

I've created a codepen to show the problem. When the service appModalService is used, the vm object is directly replaced with the FormController object, so none of the attributes of vm is accessible ...
0
votes
1answer
17 views

Angular forms: Triggering revalidation of field

I have a form with two fields: validFrom and validUntil. ValidUntil has a custom validator that will render the field invalid if the value is before the value in validFrom. This works fine as long as ...
0
votes
1answer
47 views

AngularJS - submit empty form fields as null rather than completely omitting it

This is my HTML / Angular: <form ng-submit="ctrl.add()"> <div class="form-group"> <label>Username</label> <input type="text" ...
-1
votes
1answer
11 views

AngularJS: Editing a form values not coming in scope

I am using a form to create an user in my application. I am also using the same form to update the user profile and I am loading the values from database. if user does not change anything in the edit ...
0
votes
0answers
27 views

form not submited properly in angularjs with struts2

I am using struts2 framework with angularjs.There are two buttons one for reset the texts fields with default value and other is to submit the page. my submit is not working. My jsp page is:- ...
0
votes
0answers
26 views

How to link items from different collections together?

I'm making a blog-chat app using meteor with angularJS and ionic. So I have two collections, chats and messages. I want when the user taps an exciting chat to be able to add messages. I also want a ...
0
votes
0answers
27 views

how to handle a filtered value in input with AngularJS

In AngularJS, which is the best way to handle a filtered value in an input? Our user should input a number and see it localized, but you cannot bind an input to a model and format it with a filter. ...
0
votes
0answers
62 views

AngularJS disable form validation while keeping the built-in browser (HTML5) validation

I'm using angularJS form which has three inputs - text, email and multiple email field. All the above fields are required, and Angular's validation works fine on the text and email fields, but it is ...
0
votes
0answers
29 views

unable to edit/modify fields in my angularjs form

I am displaying a form in a modal. But when I click on the text input field it is not allowing me to enter text. similarly unable to change/select radio buttons But when trying with "tab" it is ...