oria / gridx

Just another powerful Dojo grid
Other
162 stars 78 forks source link

On IE9, when use extendedSelect module, the dod can not show normally. #398

Open fuzeyi opened 7 years ago

fuzeyi commented 7 years ago

On IE9, when use extendedSelect and RowHeader module to implement the multiple selection function, the dod can not show normally.
IE8, 10, 11, ff and chorme work normally.

I checked the source, and find in RowHeader.js in function _syncRowHeight ,there is the following: if (isIE === 9) { rowHeaderNode.style.height = rowHeaderNode.firstChild.style.height = bodyNode.style.height = bodyNode.clientHeight + 1 + 'px'; } else { rowHeaderNode.style.height = rowHeaderNode.firstChild.style.height = bodyNode.firstChild.style.height = bodyNode.firstChild.clientHeight + 1 + 'px'; }

I think this is the bug position. Thanks.