Multiple requests at once..
I have a number of pages that have mutliple grids on them all containing different data all related to a central point. What I'm wanting to do is to have each of those load independently of each other and at the same time.
The problem I am having however is that each request waits till the previous finishes before getting the next bit of data.
All the data is being generated via perl cgi script.
Grid1
Grid2
Grid3
Grid4
grid1.request;
grid2.request;
grid3.request;
grid4.request;
Now, I would assume by having those sequential each would start as soon as it is called but unfortunately the 2-4 grids never show up until the first, 3-4 only after 2, etc. Its always sequential. I'd love all to be populated as the data is returned as I know 4 runs faster than 1-3.
Thoughts?
The problem I am having however is that each request waits till the previous finishes before getting the next bit of data.
All the data is being generated via perl cgi script.
Grid1
Grid2
Grid3
Grid4
grid1.request;
grid2.request;
grid3.request;
grid4.request;
Now, I would assume by having those sequential each would start as soon as it is called but unfortunately the 2-4 grids never show up until the first, 3-4 only after 2, etc. Its always sequential. I'd love all to be populated as the data is returned as I know 4 runs faster than 1-3.
Thoughts?
Mike
April 30,