Codespilot / vocadb

Automatically exported from code.google.com/p/vocadb
2 stars 1 forks source link

Real-time (or at least on-demand) validation messages for entry edit pages without the need to submit #145

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Currently validation is done server-side and messages are shown when the page 
is loaded, which works poorly because you'd need to get the messages before 
submitting.

Two ways to show the validation messages using knockout/TypeScript:
1) Could have real-time validation messages that get updates as soon as the 
user changes something. For example while adding artists, the messages would be 
updated immediately.
2) The list of validation warnings could be shown when the user is submitting 
the entry. A confirmation would be shown to the user, encouraging him to 
correct the errors before submitting.

Could probably have a combination of both: show the real-time warnings in-place 
and a separate list when the user is submitting.

Original issue reported on code.google.com by rii...@gmail.com on 27 Sep 2013 at 8:59

GoogleCodeExporter commented 8 years ago

Original comment by rii...@gmail.com on 27 Jul 2014 at 7:51