Greetings,
I'm using 7.0rc2. I've got a listgrid that I'd like to autofetch as the user scrolls through large numbers of records. For some reason, it's not working. The only thing I'm doing differently that might be causing a problem is that I do a .setFields() to the grid to dynamically set the fields, then I .fetchData(criteria). Would this cause it to not to autofetch while the user scrolls? The result set I'm testing with is 4,000 records.
I'm using 7.0rc2. I've got a listgrid that I'd like to autofetch as the user scrolls through large numbers of records. For some reason, it's not working. The only thing I'm doing differently that might be causing a problem is that I do a .setFields() to the grid to dynamically set the fields, then I .fetchData(criteria). Would this cause it to not to autofetch while the user scrolls? The result set I'm testing with is 4,000 records.
Code:
isc.ListGrid.create({ ID: "searchResultsList", loadingDataMessage:"Searching...", dataSource:"SearchResults", width:panelWidth-30, bodyBackgroundColor:"#FFFFFF", alternateRecordStyles:true, selectionAppearance:"checkbox", canPickFields:true, autoFetchData:true, headerHeight:30, autoFitData:"vertical", autoFitMaxHeight:550, showAllRecords:false, wrapCells:true, cellHeight:30, left:0, autoDraw:true });
Comment