I have been playing around with backbone for a while now. I really like the backbone.validation library but it only does simple client side validations.
In some of my projects I have validations that can only be run on the server (Rails). In my ideal world, I would be able to have the server return a 422 (Unprocessable Entity) and provide me with a mapping of the attribute(s) and their corresponding errors so that I can highlight them in the UI.
Has anyone run into this problem?