Re: Paging with DisplayTag and encoded table name

2008-05-02 Thread Paweł Badeński
2008/5/2, Zoran Avtarovski <[EMAIL PROTECTED]>: > You can implement the org.displaytag.pagination.PaginatedList class and use > any parameters you like. Also helps when dealing with large lists. > > Z. > > > > > 2008/5/1 Brad A Cupit <[EMAIL PROTECTED]>: > >>> > > I'm curious if there is a neat

Re: Paging with DisplayTag and encoded table name

2008-05-01 Thread Zoran Avtarovski
You can implement the org.displaytag.pagination.PaginatedList class and use any parameters you like. Also helps when dealing with large lists. Z. > 2008/5/1 Brad A Cupit <[EMAIL PROTECTED]>: >>> > > I'm curious if there is a neat way to have the page >>> > > parameter mapped onto action or some

Re: Paging with DisplayTag and encoded table name

2008-05-01 Thread Paweł Badeński
2008/5/1 Brad A Cupit <[EMAIL PROTECTED]>: > > I'm curious if there is a neat way to have the page > > parameter mapped onto action or something alike > > You should be able to put a setter on the Action. So, if your url parameter > is named pageNum, your action would have a setPageNum() method.

RE: Paging with DisplayTag and encoded table name

2008-05-01 Thread Brad A Cupit
> I'm curious if there is a neat way to have the page > parameter mapped onto action or something alike You should be able to put a setter on the Action. So, if your url parameter is named pageNum, your action would have a setPageNum() method. Brad Cupit Louisiana State University - UIS

Paging with DisplayTag and encoded table name

2008-05-01 Thread Paweł Badeński
Hi, I want to implement paging with DisplayTag, but I'm stuck with encoded table name (d--p). As for now I have my Action implement ParameterAware and manually grab the page number from the map. I'm curious if there is a neat way to have the page parameter mapped onto action or something alike (so