Re: Grid with Scroll synchronization + Customization

2010-12-30 Thread Nourredine
Tawus wrote: > > Hi > > This is something you should have a look at > > http://docs.jboss.org/hibernate/core/3.3/reference/en/html/performance.html > > As an example, in one of our projects we had basic audit fields

Re: Grid with Scroll synchronization + Customization

2010-12-30 Thread Taha Hafeez
Hi This is something you should have a look at http://docs.jboss.org/hibernate/core/3.3/reference/en/html/performance.html As an example, in one of our projects we had basic audit fields like creator user and modifier

Re: Grid with Scroll synchronization + Customization

2010-12-29 Thread Duruk_Kab
Hi All, Thanks alot for your suggestions. I have implemented GridDataSource so I am retrieving only required data from the back end to be displayed on the grid. (SetMaxResults + Pagination) But I do have many things associated with the Grid as Error image, Check boxes with JavaScript validation,

Re: Grid with Scroll synchronization + Customization

2010-12-28 Thread Taha Hafeez
where the result > set > > is larger than the limit to prompt the user to be more specific in their > > search criteria, or using a grid where the pages of results are loaded on > > demand, rather than the entire list loaded upon initial display. > > > > Regards,

Re: Grid with Scroll synchronization + Customization

2010-12-28 Thread Nicolas Barrera
, rather than the entire list loaded upon initial display. > > Regards, > Jim. > > -Original Message- > From: Matheus Eduardo Machado Moreira [mailto:matheus@gmail.com] > Sent: 28 December 2010 10:50 > To: Tapestry users > Subject: Re: Grid with Scroll synchro

RE: Grid with Scroll synchronization + Customization

2010-12-28 Thread Jim O'Callaghan
, rather than the entire list loaded upon initial display. Regards, Jim. -Original Message- From: Matheus Eduardo Machado Moreira [mailto:matheus@gmail.com] Sent: 28 December 2010 10:50 To: Tapestry users Subject: Re: Grid with Scroll synchronization + Customization You could probably

Re: Grid with Scroll synchronization + Customization

2010-12-28 Thread Matheus Eduardo Machado Moreira
You could probably remove the TimingFilter that is present in your AppModule. This service is part of the app that is generated by the quickstart archetype and serve as an example of how to build and contribute services. Just comment out the methods buildTimingFilter() and contributeRequestHandl

Re: Grid with Scroll synchronization + Customization

2010-12-28 Thread Duruk_Kab
Thanks Thiago for pointing out logger issue. It was really very helpful. Now, the application takes around 5-6 seconds instead of 12-13 seconds it was taking before. But still have to figure out why it is taking 5-6 seconds in Tapestry. The log says: [2010-12-28 03:53:51.247] server-tomcat-thre

Re: Grid with Scroll synchronization + Customization

2010-12-27 Thread Thiago H. de Paula Figueiredo
On Mon, 27 Dec 2010 10:38:08 -0200, Duruk_Kab wrote: I have used the same JavaScript + CSS code for synchronization purpose, the main problem with this is, we are facing many perfomance issues. Most probably it's in the database. Turning the log level so low as you did hurts performance

Re: Grid with Scroll synchronization + Customization

2010-12-27 Thread Duruk_Kab
Thanks for the help. I have used the same JavaScript + CSS code for synchronization purpose, the main problem with this is, we are facing many perfomance issues. I have put SOPs to figure out which part of code is taking huge time and found out that, it is tapestry which is taking most part of t

Re: Grid with Scroll synchronization + Customization

2010-12-26 Thread Thiago H. de Paula Figueiredo
On Fri, 24 Dec 2010 07:08:48 -0200, Duruk_Kab wrote: Hi, Hi! I have below requirements for Tapestry grid, I am using Tapestry 5.1.0.5: - Reduce the grid size (Say to display in half of the page) with 50 records per page -> I can handle showing records per page but to reduce the grid

RE: Grid with Scroll synchronization + Customization

2010-12-24 Thread Jim O'Callaghan
Can you wrap the grid in a div with fixed height / width and set its overflow css property to "both"? Specify a pager for both the top and bottom of the grid and use some custom css to make their positions absolute? I'm not sure there is a need to be altering the GridDataSource for this requiremen