Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
ember-bootstrap-validations
Advanced tools
This Ember addon adds support for validations based on ember-validations to ember-bootstrap
This Ember addon adds support for validations based on ember-validations to ember-bootstrap forms. ember-bootstrap versions before 0.7.0 came with built-in support for ember-validations, all versions starting at 0.7.0 need an additional addon that implements validation support for the particular validation library. This addon delivers support for ember-validations.
ember install ember-bootstrap-validations
You should have installed the ember-bootstrap and ember-validations addons already. If not install them:
ember install ember-bootstrap
ember install ember-validations
If using ember-bootstrap 1.0 (alpha), install the corresponding version of this addon:
ember install ember-bootstrap-validations@1.0.0-alpha
Add validations to your model:
import DS from 'ember-data';
import EmberValidations from 'ember-validations';
export default DS.Model.extend(EmberValidations, {
username: DS.attr('string'),
email: DS.attr('string'),
password: DS.attr('string'),
validations: {
'username': {
presence: true,
length: { minimum: 6 }
},
'email': {
presence: true
},
'password': {
presence: true,
length: { minimum: 8 }
}
}
});
Then assign the model to your form:
{{#bs-form model=model}}
{{bs-form-element label="Username" controlType="text" property="username" required=true}}
{{bs-form-element label="Email" controlType="email" property="email" required=true}}
{{bs-form-element label="Password" controlType="password" property="password" required=true}}
{{bs-button defaultText="Submit" type="primary" buttonType="submit"}}
{{/bs-form}}
Code and documentation copyright 2016 kaliber5 GmbH. Code released under the MIT license.
FAQs
This Ember addon adds support for validations based on ember-validations to ember-bootstrap
The npm package ember-bootstrap-validations receives a total of 0 weekly downloads. As such, ember-bootstrap-validations popularity was classified as not popular.
We found that ember-bootstrap-validations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.