Ngx Formly is a dynamic JSON powered form library for Angular (mainly based an on Angular Reactive Forms) that bring unmatched maintainability to your application's forms.
Supported UI libs
UI | |
---|---|
Bootstrap | ✅ |
Ionic | ✅ |
Kendo | ✅ |
Material2 | ✅ |
PrimeNG | ✅ |
NativeScript | ❌ |
Which Version to use?
Angular version | Formly version |
---|---|
Angular >= 5 | @ngx-formly/[email protected] |
Angular >= 4 | @ngx-formly/[email protected] |
Angular >= 2 | [email protected] |
- Documentation, demos, and guides
- StackBlitz Template
Follow these steps to get started with Ngx Formly. Also check out our demos for further examples.
npm install @angular/forms @ngx-formly/core --save
- Material2:
- Ensure you have already installed material2 https://material.angular.io/guide/getting-started
- Install
@ngx-formly/material
npm install @ngx-formly/material --save
-
npm install @ngx-formly/bootstrap --save
-
npm install @ngx-formly/ionic --save
-
npm install @ngx-formly/primeng --save
-
npm install @ngx-formly/kendo --save
import {NgModule} from '@angular/core';
import {ReactiveFormsModule} from '@angular/forms';
import {FormlyModule} from '@ngx-formly/core';
import {FormlyBootstrapModule} from '@ngx-formly/bootstrap';
// for material2 import `FormlyMaterialModule`:
// import {FormlyMaterialModule} from '@ngx-formly/material';
// for ionic import `FormlyIonicModule`:
// import {FormlyIonicModule} from '@ngx-formly/ionic';
// for primeng import `FormlyPrimeNGModule`:
// import {FormlyPrimeNGModule} from '@ngx-formly/primeng';
// for kendo import `FormlyKendoModule`:
// import {FormlyKendoModule} from '@ngx-formly/kendo';
@NgModule({
imports: [
...,
ReactiveFormsModule,
FormlyModule.forRoot(),
FormlyBootstrapModule,
// for material2:
// FormlyMaterialModule
// for ionic:
// FormlyIonicModule
// for primeng:
// FormlyPrimeNGModule
// for kendo:
// FormlyKendoModule
],
})
export class AppModule {}
import {Component} from '@angular/core';
import {FormGroup} from '@angular/forms';
import {FormlyFieldConfig} from '@ngx-formly/core';
@Component({
selector: 'app',
template: `
<form [formGroup]="form" (ngSubmit)="submit(model)">
<formly-form [form]="form" [fields]="fields" [model]="model">
<button type="submit" class="btn btn-default">Submit</button>
</formly-form>
</form>
`,
})
export class AppComponent {
form = new FormGroup({});
model = { email: '[email protected]' };
fields: FormlyFieldConfig[] = [{
key: 'email',
type: 'input',
templateOptions: {
type: 'email',
label: 'Email address',
placeholder: 'Enter email',
required: true,
}
}];
submit(model) {
console.log(model);
}
}
From there, it's just JavaScript. Allowing for DRY, maintainable, reusable forms.
See the issues labeled enhancement
A special thanks to Kent C. Dodds for giving me opportunity to work on this. This library is maintained (with love) by me, Mohammed Zama Khan. Thanks to all contributors! If you're trying to find angular-formly, go here
Thanks goes to these wonderful people (emoji key):