ember-validations
ember-validations copied to clipboard
Ember-Validations - An Ember.js library for handling object validations
Otherwise it gets `Uncaught SyntaxError: Unexpected token }`
Add build into git repo for easy downloading. Issue https://github.com/lcoq/ember-validations/issues/31 - Remove dist from gitignore - Built lastest into `dist` directory - Updated README
I am just starting to use Ember and ember-validations. It would be helpful if you could provide an example of how validations are used in a template to provide visual...
Hi, I want to create a `tooltips` property that would contain processed error data from corresponding validators (key to key mapping). For that, I need to listen to any change...
This is such a cool library! :+1: Except, I don't think everyone is using Rake. Well, at least I don't and therefore can't try it :( Is there a chance...
Unfortunately I couldn't create a working example with your tutorial because `Ember.Object.extend` does not work, is it outdated? So I have the following: ``` javascript App.User = DS.Model.extend(Ember.Validations, { validations:...
It would be really useful if the library offered the ability to specify scopes for a particular set of validations. Example: ``` javascript App.User = Ember.Object.extend(Ember.Validations, { validations: { scope:...
Apart from explicitly overriding the message with the right key, i didn't see anywhere in the source code to declaratively add custom error message Ember.ValidationError.addMessage('blank', "can't be blank"); vs foo...
We'd like to define validations dynamically.. something like this: ``` validations: (-> if @get 'required' value: presence: true ).property 'required' ``` But if validations is defined as a computed property...
I'm using node.js and would like the server and client to share the validation rules so they're on the same page. Any thoughts on how this can be accomplished?