1. Howto write custom checks/validation for the play-framework stackoverflow.comI try to write checks for the play-framework and see two different possibilities. I described both and want to know if my understanding is correct (So it's more a ... |
2. Own validator with incorrect message displayed stackoverflow.comI wrote my own Validation; The annotation :
And the class :
|
3. Play Framework: How to validate a subset of fields in an object? stackoverflow.comI have an User object that has many attributes. In my edit profile screen I'm displaying a subset of those attributes. In the corresponding controller action how can I validate only ... |
4. play framework mandatory item stackoverflow.comIs it possible to automatically put a * before a required field label? In this example firstname is required (@Required in the model) and therefore a * should be shown after ... |
5. Play's validation on numeric fields when user enters in alpha characters stackoverflow.comUsing the Play! Framework, I have a field that requires the user to enter a numeric value greater than zero. In my controller, I have something like this:
|
6. Play framework: select and validation stackoverflow.comI use a register form with automatic validation provided by the play framework. This all works fine with simple input fields. But now i want to add a select (DropDown-List) for ... |
7. Validation: check for uniqueness before saving stackoverflow.comI am developing a web app with Play Framework. My app has a User class, which in turn has a username and an email property. Pretty standard stuff. However... When a new ... |
8. Domain object validation with Play! framework stackoverflow.comI want to validate a domain object without automatic parameter binding to restrict the properties that can be set by the client. The following class (example from Play! docs) ...
|
9. Complex POJO validation with PlayFramework stackoverflow.comIs there an elegant way to validate a POJO parameter with another parameter from the same POJO with PlayFramework ? I'm searching a solution which keep the Play error mechanism. Exemple : ... |
10. Can Validation be used with parameters that are enhanced in the controller? stackoverflow.comI have a Website model, that has a |