Re: [T5] GridDataSource: why call getAvailableRows before prepare?

2009-10-29 Thread Jux
I have the exact same problem/question? When I call prepare myself and update my "availableRows" parameter. Once the getAvailableRows run, the parameter is reseted by itself. How to use GridDatasource the correct way? Franz Amador wrote: > > I'm starting to use Grid to display the paged, sorta

Post parameters get removed from Request object

2010-02-12 Thread Jux
Hi I am not Tapestry developer and don't know if and where to post error reports, but I have one really frustrating issue. I have a Dispatcher, that monitors for a specific POST parameter form the Request object, but sumetimes the request.getParameterNames() returns an emtpy list (not even t:for

Re: Post parameters get removed from Request object

2010-02-12 Thread Jux
= request.getParameter("requestCode") Sometimes i get the value is null, sometimes I get the expected result. kristian.marinkovic wrote: > > hi, > > can you post some code? > how is your dispatcher contributed? > > > g, > kris > > > Jux >

Re: Post parameters get removed from Request object

2010-02-12 Thread Jux
I also must add, that even though in Dispatcher, the request object have 0 parameters, the form gets submitted with all the right data in the application. I just want to add some additional application logic in the dispatcher and there I need to know what parameters were submitted. -- View this

Re: Post parameters get removed from Request object

2010-02-12 Thread Jux
This is how the the Dispatcher (AccessController) is set up: public static void bind(ServiceBinder binder) { binder.bind(AccessController.class).withId("AccessController"); } Shouldn't that work? kristian.marinkovic wrote: > > how is your dispatcher contributed? > > if it on