ngx-formly icon indicating copy to clipboard operation
ngx-formly copied to clipboard

📝 JSON powered / Dynamic forms for Angular

Results 241 ngx-formly issues
Sort by recently updated
recently updated
newest added

**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...

bug

**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). ![image](https://user-images.githubusercontent.com/3502753/208882449-b81fa1dd-49f5-41ea-acb7-8f8beb24e501.png) The style on the [Angular Material datepicker documentation](https://material.angular.io/components/datepicker/overview) ![image](https://user-images.githubusercontent.com/3502753/208882535-08967ee5-96e7-44bb-8fcf-ca1c3af552e8.png) The...

bug

**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...

bug

**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...

bug

**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).

enhancement

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...

enhancement

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...

bug

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 -...

enhancement

How could I get all the errors in a form? I want to list them when the user clicks on submit

enhancement

**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: {...

question