You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2021. It is now read-only.
Below is my sample code, I have more than 7k records in my table, below code executes when I click on table header to sort columns,
var collator = new Intl.Collator(undefined, {
numeric: true,
sensitivity: 'base'
});
var objs = [{name: '1_Document', size: 40}, {name: '11_Document', size: 50}, {name: '2_Document', size: 60}];
objs.sort(function(a, b) { return collator.compare(a.name, b.name) })
But it is dead slow in IE and "Stop Script" message pops-up. Can someone please help?
The text was updated successfully, but these errors were encountered: