From a3d828076c722e8ef62f185b75f75f4b8063dcfb Mon Sep 17 00:00:00 2001 From: Thomas Steur Date: Sat, 11 Feb 2017 15:09:55 +1300 Subject: [PATCH] disable some row features when there are more than 255 rows since tr from thead counts as well. --- plugins/CoreHome/javascripts/dataTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js index aae62b3ad17..6050aa6937c 100644 --- a/plugins/CoreHome/javascripts/dataTable.js +++ b/plugins/CoreHome/javascripts/dataTable.js @@ -95,7 +95,7 @@ $.extend(DataTable.prototype, UIControl.prototype, { this.workingDivId = this._createDivId(); domElem.attr('id', this.workingDivId); - this.maxNumRowsToHandleEvents = 250; + this.maxNumRowsToHandleEvents = 255; this.loadedSubDataTable = {}; this.isEmpty = $('.pk-emptyDataTable', domElem).length > 0; this.bindEventsAndApplyStyle(domElem);