Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Sep 24, 2024
2 parents 921dc51 + 8993dc5 commit c8eb93b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/plugins/slick.rowdetailview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,6 @@ export class SlickRowDetailView {
const item: any = {};

Object.keys(this._dataView).forEach(prop => {
console.log(item[prop]);
item[prop] = null;
});
item[this._dataViewIdProperty] = parent[this._dataViewIdProperty] + '.' + offset;
Expand Down
3 changes: 2 additions & 1 deletion src/slick.dataview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@ export class SlickDataView<TData extends SlickDataItem = any> implements CustomD
}

/**
* @deprecated, to be more removed in next major since IE is no longer supported and this is no longer useful.
* Provides a workaround for the extremely slow sorting in IE.
* Does a [lexicographic] sort on a give column by temporarily overriding Object.prototype.toString
* to return the value of that field and then doing a native Array.sort().
Expand Down Expand Up @@ -1819,4 +1820,4 @@ if (IIFE_ONLY && window.Slick) {
window.Slick.Data = window.Slick.Data || {};
window.Slick.Data.DataView = SlickDataView;
window.Slick.Data.Aggregators = Aggregators;
}
}

0 comments on commit c8eb93b

Please sign in to comment.