ng2-validation-manager icon indicating copy to clipboard operation
ng2-validation-manager copied to clipboard

Validation manager library for Angular 2 (based on Laravel Validation method)

Results 5 ng2-validation-manager issues
Sort by recently updated
recently updated
newest added

I am trying to get a custom URL pattern to work: 'url' : 'required|pattern: [^((http|ftp|https):\\/\\/)?([\\w_-]+(?:(?:\\.[\\w_-]+)+))([\\w.,@?^=%&:\\/~+#-]*[\\w@?^=%&\\/~+#-])?$]', BUT I keep getting this "invalid expression" error. Will this pattern not work with your...

How can i call or include custom validation rule in to validation manager ?

i have used ng2 validation manager. I want to validate image. My html file like below and my ts file as below filesToUpload: Array = []; this.form1 = new ValidationManager({...

Hello, I found your library while trying to find something easier to implement than the official Reactive Form. Your library seems to make this bridge possible (I find the core...

I am trying to set array values to a field, but its always passed as a string instead of an array. ``` this.form.setValue({ 'request_types': ['hotel', 'flights'] }); ```