Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Performance fix for loading data into paged table. #84

Merged
merged 1 commit into from
Oct 10, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions datalab/notebook/static/charting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,8 @@ module Charting {
handlePageEvent(page:number):void {
var offset = (page == 0) ? -1 : 1;
this.firstRow += offset * this.pageSize;
this.refreshData.first = this.firstRow;
this.refreshData.count = this.pageSize;
this.refresh(true);
}
}
Expand Down