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.
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!
- Define a schema node of type
string
. - 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'
}
];
See the included example folder.