ngx-formly
ngx-formly copied to clipboard
📝 JSON powered / Dynamic forms for Angular
**Description** Some time after `v5.10.28` `valueChanges` on the form started triggering upon initialization. EDIT: `5.10.30` introduces the change Latest `v5.12.6` and `v6.0.0` trigger `valueChanges' **Minimal Reproduction** https://github.com/gkamperis/formly-bug/tree/value-changes `npm run test...
**Description** In v6 the Material Datepicker CSS seems broken based on the one displayed on the [formly documentation page](https://formly.dev/docs/ui/material).  The style on the [Angular Material datepicker documentation](https://material.angular.io/components/datepicker/overview)  The...
**Description** NGX-Formly does not emit a statusChange event initially. **Minimal Reproduction** The message "### FORMLY, STATUS CHANGED" is **not** shown in the console. https://stackblitz.com/edit/angular-ivy-29j6ld?file=src/app/app.component.ts A working Angular example, without using...
**Description** When animating a formly form using Angular's animations, if the form is built using a custom type, using the ":leave" animation query will cause an unexpected behaviour. When the...
**Question** I want to call a method on the type component instance from a wrapper. I tried using `ViewChild`, but the reference is undefined on `ngAfterViewInit`. Example on [StackBlitz](https://stackblitz.com/edit/angular-6zv1a3?file=src%2Fapp%2Fpanel-wrapper.component.ts).
some fields are duplicated in `FormlyFieldConfig` which could be avoided easily by providing union types. for example the field `disabled` is existing inside `props` and again inside `expressionProperties`, we can...
when you dynamically open a dialog that is a part of a child lazy-loaded module, you will get a wrong error message ``` ERROR Error: NgxFormly: missing `forRoot()` call. use...
I came from the [docs for extensions](https://formly.dev/docs/guide/custom-formly-extension/) and I have some notices: - remove the property `name` or make it optional as it doesn't used in the field itself -...
How could I get all the errors in a form? I want to list them when the user clicks on submit
**Description** In the v6 of ngx-formly. The rendering DOM has a redundant `formly-group` tag. Check the following example. ```js fields: FormlyFieldConfig[] = [ { key: 'Input', type: 'input', props: {...