Hi Friends
How to implement the paged view of a RecordGrid ?
Means suppose I have 10,000 records in a RecordSet and I want to show only 100 records per page/view in a RecordGrid and the rest are should be accessible through a CommandButton /Link (do not want to use the default navigation control as it does not give a professional look
) ONLY after request from the user to avoid unnecessary data transfer from the server. But to keep the users happy, we can transfer the next page/set of data in background in advance. How to implement this ? Any pointer ?
Current I'm displaying all the records in the RecordGrid which takes lots of initial time.
And I did not found any method of RecordSet to get a sub-set of it (another subset of RecordSet ).
Only RecordSet.select is there which asks for a filter, but there is no such filters can be applied like from records 1-100, 101-200, 201-300, etc ....
But if we can implement the above concept of paged view and background request of data for next page in advance then we can make the users happy
Correct me if I'm wrong.
//Thank you
How to implement the paged view of a RecordGrid ?
Means suppose I have 10,000 records in a RecordSet and I want to show only 100 records per page/view in a RecordGrid and the rest are should be accessible through a CommandButton /Link (do not want to use the default navigation control as it does not give a professional look
Current I'm displaying all the records in the RecordGrid which takes lots of initial time.
And I did not found any method of RecordSet to get a sub-set of it (another subset of RecordSet ).
Only RecordSet.select is there which asks for a filter, but there is no such filters can be applied like from records 1-100, 101-200, 201-300, etc ....
But if we can implement the above concept of paged view and background request of data for next page in advance then we can make the users happy
Correct me if I'm wrong.
//Thank you
Tags:
paged,
view,
recordset,
recordgrid