Change-Id: If7c96cb4bb3fc104ec7eb858f7d55b5ae3f42571
*/
private double cache_rate = CACHE_RATE_DEFAULT;
/**
- * fraction of pageLenght which can be scrolled without making new request
+ * fraction of pageLength which can be scrolled without making new request
*/
private double cache_react_rate = 0.75 * cache_rate;
if (uidl.hasAttribute("pagelength")) {
pageLength = uidl.getIntAttribute("pagelength");
} else {
- // pagelenght is "0" meaning scrolling is turned off
+ // pagelength is "0" meaning scrolling is turned off
pageLength = totalRows;
}
}
/**
- * Fetches a page from the data source based on the values of pageLenght and
+ * Fetches a page from the data source based on the values of pageLength and
* currentOffset. Also updates the set of primary keys, used in
* identification of RowItems.
*/