All Projects → SkeletonSkelettron → ngx-validator

SkeletonSkelettron / ngx-validator

Licence: other
Validator directive and custom input generator for angular template driven and reactive forms

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to ngx-validator

laravel-form-builder
laravel专用表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,树型,文件/图片上传等功能。
Stars: ✭ 59 (+293.33%)
Mutual labels:  form-generator
laminas-form
Validate and display simple and complex forms, casting forms to business objects and vice versa
Stars: ✭ 65 (+333.33%)
Mutual labels:  form-generator
Form Create
🔥🔥🔥 强大的动态表单生成器|form-create is a form generation component that can generate dynamic rendering, data collection, verification and submission functions through JSON.
Stars: ✭ 3,698 (+24553.33%)
Mutual labels:  form-generator
element-schema-form
A schema-based element-ui form component for Vue2.x.
Stars: ✭ 31 (+106.67%)
Mutual labels:  form-generator
cp
A configurable template reuse solution for platform ui development .https://json-drived-configurable-platform.github.io/cp
Stars: ✭ 17 (+13.33%)
Mutual labels:  form-generator
07 Python Advanced Topics
You'll learn about Iterators, Generators, Closure, Decorators, Property, and RegEx in detail with examples.
Stars: ✭ 232 (+1446.67%)
Mutual labels:  property-decorators

Documentation

For detailed documentation, please visit projet's wiki page
Live Demo page

Changes

version 2.4.0

  • updated to angular 9

version 2.3.0

  • added <ngx-dropdown-for> component
  • bugfixes
  • added <ngx-input-for> (blur) event

version 2.2.2

  • bugfixes
  • added some styling. Now you should include 'node_modules/ngx-validator/lib/ngx-validator.css'

version 2.2.0

  • Added support for ngModelOptions "{ updateOn: 'blur' }" in <ngx-input-for>

version 2.1.1

  • Removed console.log :|

version 2.1.0

  • Breaking change: removed [labelClass], [inputClass] and [errorClass] input property from <ngx-label-for>, <ngx-input-for> and <ngx-validator-for> components . Now you can assign any class by class="form control"
  • added defaul css classes to <ngx-label-for> ('ngx-label' and 'ngx-label-child'), <ngx-input-for>('ngx-input' and 'ngx-input-child') and <ngx-validator-for> ('ngx-validator' and 'ngx-validator-child'). You can use them for additional styling

version 2.0.1

  • Breaking change: changed IsValid and ModelErrors type from Function to PropertyFunction.

version 2.0.0

  • Added support for reactive forms.
  • Added experimental ModelState decorator for class
  • Removed need for all property initialization through the class constructor
  • Some refactoring

version 1.2.4

  • updated readme. New documentation for library

version 1.2.3

  • bug fix in Required and RequiredIf.

version 1.2.2

  • bug fix

version 1.2.1

  • added support for custom template in ngx-input-for
            <ngx-input-for
                [model]="model"
                name="power"
                [(ngModel)]="model.power">
                <ng-template
                    ngxCustomTemplateFor
                    let-model>
                    <kendo-dropdownlist
                        [data]="listItems"
                        [textField]="'text'"
                        [valueField]="'value'"
                        name="power"
                        class="form-control"
                        [(ngModel)]="model.power"
                        [valuePrimitive]="true">
                    </kendo-dropdownlist>
                </ng-template>
            </ngx-input-for>

version 1.1.1

  • fixed placeholder translation error

version 1.1.0

  • added RequiredIf validation attribute
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].