Hi All!
I'm using OE 10.01B, I want to make a grid to display my data records. So I'm using standart <table> and <tr> - <td> to create rows and column. But the problem is when I need to display data with large amount of records i'm displaying all of the records at the same time. So the browser got not responding for it has to show thousands of records.
So I think the solution is to split my display into several pages, like google n most web based Information System did (Well, actually my friend did).
I did this using a temp table. I save the query result in a temp table, and put additional field to save page number and add an index for field page. So when the user do requery, I clear the temp tabel and fill it with new records. But when the user only change page, i browse the temp table to display the requested page.
What I don't like is I have to wait until the query finished to display even the first page. So my question is does anybody have any idea how to do this in a better and faster way?
Thanks in advanced.
Regards
YoChan
I'm using OE 10.01B, I want to make a grid to display my data records. So I'm using standart <table> and <tr> - <td> to create rows and column. But the problem is when I need to display data with large amount of records i'm displaying all of the records at the same time. So the browser got not responding for it has to show thousands of records.
So I think the solution is to split my display into several pages, like google n most web based Information System did (Well, actually my friend did).
I did this using a temp table. I save the query result in a temp table, and put additional field to save page number and add an index for field page. So when the user do requery, I clear the temp tabel and fill it with new records. But when the user only change page, i browse the temp table to display the requested page.
What I don't like is I have to wait until the query finished to display even the first page. So my question is does anybody have any idea how to do this in a better and faster way?
Thanks in advanced.
Regards
YoChan