Somewhat off topic, but I wish there was a credible site out there that reviewed these type of general libraries. There are hundreds of them out there and when I need to find one it usually comes with hours of research trying to decide on the right one to use. It would be great if there was a place to look up the general strengths and weaknesses of each without doing all the necessary leg work.
You make a good point, I'm not familiar with many of these libraries. Can you please provide some links. I'm familiar with: - Stripe jQuery.payment.js (formance is based on this project, extended beyond payment forms) https://github.com/stripe/jquery.payment - Masked Input (good for basic formatting, and does not include validating) https://github.com/digitalBush/jquery.maskedinput - Validate.js (does not include for…
Formance.js – Library for formatting and validating form fields
11–20 of 30 posts
Re: Formance.js – Library for formatting and validating form fields
#12Re: Formance.js – Library for formatting and validating form fields
#13Re: Formance.js – Library for formatting and validating form fields
#14I wish they wouldn't show error prompts when the user has just started entering characters
Those error prompts are not part of the library. In the demo, I setup some event listeners that get triggered on 'keyup change blur'. In the callback function, the value of the input field is validated and a message is shown to the user.
Maybe for your needs, it can be triggered on 'blur'. Or you even create your own setup. Formance.js simply provides the formatters and validators, and you can plug and play however you see fit.
Re: Formance.js – Library for formatting and validating form fields
#15Re: Formance.js – Library for formatting and validating form fields
#16Somewhat off topic, but I wish there was a credible site out there that reviewed these type of general libraries. There are hundreds of them out there and when I need to find one it usually comes with hours of research trying to decide on the right one to use. It would be great if there was a place to look up the general strengths and weaknesses of each without doing all the necessary leg work.
Re: Formance.js – Library for formatting and validating form fields
#17I wish they wouldn't show error prompts when the user has just started entering characters
I just listen for a blur event and then display errors until it's actually valid.
Re: Formance.js – Library for formatting and validating form fields
#18Somewhat off topic, but I wish there was a credible site out there that reviewed these type of general libraries. There are hundreds of them out there and when I need to find one it usually comes with hours of research trying to decide on the right one to use. It would be great if there was a place to look up the general strengths and weaknesses of each without doing all the necessary leg work.
You make a good point, I'm not familiar with many of these libraries. Can you please provide some links. I'm familiar with: - Stripe jQuery.payment.js (formance is based on this project, extended beyond payment forms) https://github.com/stripe/jquery.payment - Masked Input (good for basic formatting, and does not include validating) https://github.com/digitalBush/jquery.maskedinput - Validate.js (does not include for…
Re: Formance.js – Library for formatting and validating form fields
#19Re: Formance.js – Library for formatting and validating form fields
#20If I fill out the phone number all the way, then go back with the arrow keys and try to delete/change numbers, I get weird behavior