We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to show validation messages on a field. It shows the field name in lowercase. Can it be shown as per the field name?
Example: My field name is: Mobile Number
The text was updated successfully, but these errors were encountered:
class NewSimpleReactValidator extends SimpleReactValidator { constructor(options = {}) { super(options); this.helpers.humanizeFieldName = (field) => { // startCase is a Lodash method return _.startCase(field.replace(/([a-z0-9])([A-Z])/g, '$1 $2').replace(/_/g, ' ')); } } }
Sorry, something went wrong.
No branches or pull requests
When I try to show validation messages on a field. It shows the field name in lowercase.
Can it be shown as per the field name?
Example: My field name is: Mobile Number
The text was updated successfully, but these errors were encountered: