Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rabbithunter0502/f79d7077e4f3354d10bef8287b16d2d2 to your computer and use it in GitHub Desktop.
Save rabbithunter0502/f79d7077e4f3354d10bef8287b16d2d2 to your computer and use it in GitHub Desktop.
Cms-ui-How to use ValidationSummarizerModule

@NgModule({ imports: [ ... ValidationSummarizerModule, ... ], declarations: [ ... ], exports: [ ... ], providers: [ { provide: VALIDATION_SUMMARIZER_PROVIDER, useClass: TranslatedValidationSummarizerService }, { provide: VALIDATION_SUMMARIZER_BUILT_IN_MESSAGE_FALLBACK, useValue: true }, { provide: VALIDATION_SUMMARIZER_MESSAGES, useValue: { notSmallerThan: 'MSG_CUSTOM_VALIDATOR_MESSAGE_NOT_SMALLER_THAN' } } ] })

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment