crud « playframework « Java Enterprise Q&A





1. Issues with M:1 relations using Objectify 1.1rc and CRUD on Play 1.1    stackoverflow.com

I'm having a really odd issue and maybe one of you can shed some light on it. I would appreciate it :) I'm developing an application using Objectify 1.1rc module for Play! Framework ...

2. Generate Admin area ( CRUD ) on Play Framework    stackoverflow.com

I'm following the Official tutorial for creating a administration area. I did the first step correctly but when i extend my controller class to CRUD i got an error ...

3. Customizing CRUD list.html in PlayFramework    stackoverflow.com

Hello I'm trying to customize the list.html view for the CRUD section of a play application. My model is like this I have an object with a relation to an other object like ...

4. Play Framework CRUD pagination    stackoverflow.com

How do I set the page size in the Play Framework CRUD module? Whats the default page size? Currently I have over 20 records in the table and no paging navigation ...

5. Why am I not able to override CRUD template when using @CRUD.For?    stackoverflow.com

I'm reading the play tutorial and to spice things up a little bit I decided to use @CRUD.For instead of using the default model name pluralized. The problem is ...

6. play crud:ov --template    stackoverflow.com

I'm trying to overwrite the default template for a view generated by the crud module, I've been following this tutorial but when I run this command:

$ play crud:ov --template ...

7. Importing CRUD module in Play! 1.2.3    stackoverflow.com

When I import the CRUD module using the dependencies.yml like so:

require:
    - play
    - play -> crud
    - play -> secure
I get ...

8. Play framework: Sorting crud table fields    stackoverflow.com

How do i set the sort order to DESC as default? This sort doesn't really do anything but make postedAt the only sortable item:

<div id="crudListTable">
    #{crud.table fields:['title', 'postedAt'], ...

9. CRUD module does not support Calendar type?    stackoverflow.com

CRUD module is so cool but small problem. I am using 'Calendar' types in model classes, and they do not appear in CRUD pages. Once their types changed to 'Date' from 'Calendar', they ...





10. How to filter associations in Play Framework CRUD Module    stackoverflow.com

Let's say I have a Cat class which contains a collection of Kittens. I want to be able to list the Kittens according to a given condition, for example, the principal's ...

11. Crud module : Listing a OneToMany with a specific order    stackoverflow.com

I'm using Crud module and I can make it work well. But when I displaying the form to add a new User (or edit an existing User), I have a list of ...

12. How to override the CRUD/list() function? Play! framework    stackoverflow.com

I'm trying to override the list() function of the CRUD module for one of my models. I found this on google groups which is essentially the issue i'm having. Basically I ...

13. Play! Framework, customising the CRUD list() function    stackoverflow.com

I want to filter my list function by certain parameters, looking at the CRUD.java controller :

List<Model> objects = type.findPage(page, search, searchFields, orderBy, order, (String) request.args.get("where"));
Long count = type.count(search, searchFields, ...

14. CRUD and default values    stackoverflow.com

Hi is there any simple way how to deal with default value for create CRUD template in Play? (for example value of integer different from default 0) Thanks

15. Best practices for user management with Play! Framework?    stackoverflow.com

What's the recommended way to handle user management in Play! Framework? This is my setup:

  • UserAwareControllerBase as a base class for controllers
  • The main view template includes a login/logout button
  • custom Security class extending Secure.Security, ...

16. Using a smart "CRUD style" picker for a single field in Play! Framework    stackoverflow.com

I have a custom edit form for some entity (not based on the CRUD module), and I would like to use a CRUD-like editor for just one specific field. Specifically, it's one ...