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
in dgrid/Grid class, when sorting on the dgrid on IE browser it's failing because of parentNode is null.
I can see that there was a change when migrated to dgrid 1.2.1.
if (this._lastSortedArrow) {
// Remove the sort classes from the parent node
domClass.remove(this._lastSortedArrow.parentNode, 'dgrid-sort-up dgrid-sort-down');
// Destroy the lastSortedArrow node
domConstruct.destroy(this._lastSortedArrow);
delete this._lastSortedArrow;
}
so I think we need a test on this line( in Grid.js class updateSortArrow method) to test that parentNode not null
domClass.remove(this._lastSortedArrow.parentNode
The text was updated successfully, but these errors were encountered:
Added check for whether this._lastArrowNode.parentNode is present before changing classes on it. Older IE versions may use parentElement property instead (IE6 or earlier)
Added check for whether this._lastArrowNode.parentNode is present before changing classes on it. Older IE versions may use parentElement property instead (IE6 or earlier)
in dgrid/Grid class, when sorting on the dgrid on IE browser it's failing because of parentNode is null.
I can see that there was a change when migrated to dgrid 1.2.1.
so I think we need a test on this line( in Grid.js class updateSortArrow method) to test that parentNode not null
The text was updated successfully, but these errors were encountered: