angular-validation
angular-validation copied to clipboard
[INACTIVE] Client Side Validation for AngularJS 1. (You should use version > 2 :boom:)
when i call to check valid ``` this.checkValid = function(form) { return !!(form && form.$valid); }; ``` Here . form.$valid = undefined This is because i have an OPTIONAL control...
Fix: The $event was not getting passed when validation submit was interfering the process call.
i have a form which has ng-repeat for scope variable timings_edit ``` Availability {{dayname}} From To Are you Sure ? Add new Time slot ``` when i click the add...
These two small additions fix the issues raised in (Closes, #286) and (Closes, #287)
```html ``` # equality=password * password is first input attribut name.
Thread Discussion - https://github.com/huei90/angular-validation/pull/248 We always show error message, but not to success message.
Hey, my form to be validated is within an ng-include directive, and my validation is on submit, but when i click the submit button, I'm getting this error in This...
I have set up a 'plnker' to demonstrate a common issue when users fill in forms, that have values later on that are dependant on and validated by values put...
Hi, Calling reset(form) method clears form field values. But I need the keep values. Is there any way keeping the values and clearing the error messages?
您好^^ 我有一個表單 第一個欄位是驗證中文姓名,第二個是身分證,第三個是英文姓名 都不輸入資料,按submit後 focus會在身分證欄位而不是中文姓名 我有在angular-validation.js做測試 checkValidation函式裡面,console.log(element.attr('id'))是從中文姓名開始 但進入invalidFunc函是,console的id身分證就變成是第一個了 我也有測試您的DEMO網頁,在Form ($submit-only)不輸入資料按Submit 一樣是focus在第二個欄位Email 再麻煩您幫忙測試看看該如何修正這個問題 這個程式非常棒,很感謝您,希望能夠看到它變得更完善^^