Questions tagged [ngrx-forms]
3 questions
0
votes
0 answers
tag"NgRX-Forms" addArrayControl (HOW CAN I ADD A STRING TO MY TABLE THAT IS INSIDE AN OBJECT TABLE WITH AN INDEX)
I need your help on NgRx forms, I need to add to the pregk table a value on an alias [index], without it touching me other alias [other_index]
my entities
export interface CreationPersonnePhysiqueLieeForm {
type: TypePersonne;
nomMarital?:…
0
votes
2 answers
Append more validation functions with existing validations, ngrx-forms
Is there any possibility to add new validation functions in form control state by keeping existing already attached validation functions intact?
I hade already added required function from my reducer function.
I have tried below…

Abdullah Qudeer
- 949
- 7
- 24
0
votes
1 answer
ngrx-form, ngrx-store, change value programmatically
I have the following reducer.ts
export const FORM_ID = 'doctransForm';
export interface FormValue {
erstellt: string;
}
export const INITIAL_STATE = createFormGroupState(FORM_ID, {
erstellt: ''
});
export interface State {
…

Hesk
- 307
- 4
- 16