I want an working example of progressive paging (scrollbar paging) with 5 records as on a screen with scrollbar on screen, when I move scrollbar at the bottom,next 5 records should fetch automatically,
I am trying with this example
<script>
isc.ListGrid.create({
ID: "countryList",width:widthpix,height:100, alternateRecordStyles:true, showAllRecords:false,top:toppix,left: leftpix,dataSource: countryDS,showFilterEditor: false})
isc.ResultSet.create({dataSource : countryDS,ID:"resultSet",autoFetchData: true,cachedRows : 0,fetchAhead : true,resultSize : 5,fetchDelay : 0,useClientFiltering:true,useClientFiltering:true,updateCacheFromRequest:true,updatePartialCache:true})
function fetch() {
countryList.setData(resultSet);
}
fetch();
</script>
I am trying with this example
<script>
isc.ListGrid.create({
ID: "countryList",width:widthpix,height:100, alternateRecordStyles:true, showAllRecords:false,top:toppix,left: leftpix,dataSource: countryDS,showFilterEditor: false})
isc.ResultSet.create({dataSource : countryDS,ID:"resultSet",autoFetchData: true,cachedRows : 0,fetchAhead : true,resultSize : 5,fetchDelay : 0,useClientFiltering:true,useClientFiltering:true,updateCacheFromRequest:true,updatePartialCache:true})
function fetch() {
countryList.setData(resultSet);
}
fetch();
</script>
Comment