Frage

There are a lot of possibilities to make pagination with domain classes, but what about existing ArrayList of objects?

Is it possible?

War es hilfreich?

Lösung

Couldn't you use the standard Grails paginate tag, but in place of:

    [books: Book.list(params), bookCount: Book.count()]

Do something like:

    [books:list.drop(params.int('offset')?:0).take(params.int('max')?:10),
     bookCount: list.size()]
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top