Skip to content

Commit 0863aff

Browse files
committed
fix #12440 - [Gridx Regression]RowHeader: Rowheader mis-aligned with row after resize height of grid in IE11
1 parent c2db526 commit 0863aff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/RowHeader.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,9 @@ define([
266266
},
267267

268268
_onResize: function(){
269-
var ie = has('ie'), bn;
269+
var ie = has('ie')? has('ie') : has('trident')? 11 : false,
270+
bn;
271+
270272
for(var brn = this.grid.bodyNode.firstChild, n = this.bodyNode.firstChild;
271273
brn && n;
272274
brn = brn.nextSibling, n = n.nextSibling){

0 commit comments

Comments
 (0)