Skip to content

disko/angular-schema-form-iban

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-schema-form-iban

angular-schema-form-iban provides an IBAN (International Bank Account Number) schema form field for usage with angular-schema-form. It includes validation as well as a parser and a formater to display the IBAN in a human readable format in the view's form field and store it in a machine processabale format on the model.

Unmaintained

This project is no longer maintained. If you'd like to jump in and take over, just drop me a note and I'll be happy to transfer ownership!

Usage

  1. Define a schema node of type string.
  2. Define the corresponding form of type iban.
schema = {
  'type': 'object',
  'title': 'Comment',
  'properties': {
    'iban': {
      'title': 'IBAN',
      'type': 'string'
    }
  },
  'required': ['iban']
};
form = [
  {
    key: 'iban',
    type: 'iban'
  }
];

Example

See the included example folder.

About

IBAN (International Bank Account Number) schema form field for angular-schema-form

Resources

License

Stars

Watchers

Forks

Packages

No packages published