Hi ,

Iam using the AbstractPagerTool for pagination.

I have written a Test class which extends AbstractPagerTool. Test class has the below code. For every click on the pagination link a call is made to the database for fetching the records. This is not the expected behaviour. We want to get the values once from the database and use it subsequently.

Please suggest how to achieve this.


*****************************************
public void setup(HttpServletRequest req)
        {
                        ParameterParser pp = new ParameterParser(req);
                        setIndex(pp.getInt("index",0));
                        setItemsPerPage(pp.getInt("show", 10));

                        setSlipSize(10);

                List tradelist = getDataFromDatabase();
                        setItems(tradelist);


        }


**************************************

Regards
Deepak

_________________________________________________________________
Sign in and get updated on all the action from Formula One http://content.msn.co.in/Sports/FormulaOne/Default


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to