Re: [web2py] chunks

2010-07-24 Thread Phyo Arkar
What you want to do is exactly Jquery Ajax - $(#table2).load(Path_To_your_Data) , or Try using JQGrid , (There is JqGrid Plugin too). What i am doing Right now is 3 Tables , with One table having 16000 Rows , which are Directory list , computed in server side (Archive recursive Extraction , Direct

Re: [web2py] chunks

2010-07-23 Thread Jonathan Lundell
On Jul 23, 2010, at 3:31 AM, Jason Brower wrote: > Is this because you have large amounts of data? > When I has some work, we used TCL for the pages. TCL loads as you go. > This is because back in the day webbrowsers we nasty slow and it sent > the data as it came. Now-a-day we create the page

Re: [web2py] chunks

2010-07-23 Thread Jason Brower
Is this because you have large amounts of data? When I has some work, we used TCL for the pages. TCL loads as you go. This is because back in the day webbrowsers we nasty slow and it sent the data as it came. Now-a-day we create the page remotely and then send the entire thing. If your working wi

Re: [web2py] chunks

2010-07-22 Thread Jonathan Lundell
On Jul 22, 2010, at 9:32 PM, Phyo Arkar wrote: > You mean ajax? > You can do this using Ajax. > In Jquery: > $(#div_id).load(Path_To_Your_Page) No, I meant just serving a regular (dynamic) page. I'm not using Ajax. > > On 7/23/10, Jonathan Lundell wrote: >> It'd be nice to be able to return a

Re: [web2py] chunks

2010-07-22 Thread Phyo Arkar
You mean ajax? You can do this using Ajax. In Jquery: $(#div_id).load(Path_To_Your_Page) On 7/23/10, Jonathan Lundell wrote: > It'd be nice to be able to return a dynamic page in (controlled) chunks. I > have no idea how the interface to something like that might work