Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives to Rails' client_side_validations?

client_side_validations was a widely used gem that automatically created realtime validations for your Rails' frontend based on your models' validations. Alas, it seems to be unmaintained now. Are there any similar, maintained alternatives out there?

like image 986
Suan Avatar asked Nov 27 '13 15:11

Suan


2 Answers

You can use Judge Rails Gem: https://github.com/joecorcoran/judge and there are plugins to use with FormBuilder SimpleForm https://github.com/joecorcoran/judge-simple_form

like image 114
Ricardo Avatar answered Oct 12 '22 12:10

Ricardo


parsley.js is really nice -http://parsleyjs.org/ and it's been made into a gem for rails here - https://github.com/mekishizufu/parsley-rails

like image 33
Edward Avatar answered Oct 12 '22 11:10

Edward