Posts by Alfaville • 169 points
3 posts
-
3
votes3
answers24523
views -
2
votes2
answers87
viewsA: Detele() - Play Framework - Compilation error
Change this: public static Finder find = new Finder(Long.class, Task.class); That’s why: private static Finder<Long, Task> find = new Finder<Long, Task>(Long.class, Task.class); Finder…
-
1
votes2
answers158
viewsA: Play framework problem with form
Place Form.form(Task.class); in place of error. In this link is an example of a CRUD with master-Detail: Play Crud Master-Detail…