Skip to content

Commit

Permalink
Fix #841: ColumnHider: Avoid IE10 header cell bugs with ColumnResizer
Browse files Browse the repository at this point in the history
This is resolved by applying the IE8 workaround (which was done for a
slightly different reason) to IE10 as well.
  • Loading branch information
Kenneth G. Franqueiro committed May 18, 2014
1 parent ffee4c8 commit acd145f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/ColumnHider.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function(declare, has, listen, miscUtil, put, i18n){
miscUtil.addCssRule(selectorPrefix + miscUtil.escapeCssIdentifier(id, "-"),
"display: none;");

if(has("ie") === 8 && !has("quirks")){
if((has("ie") === 8 || has("ie") === 10) && !has("quirks")){
tableRule = miscUtil.addCssRule(".dgrid-row-table", "display: inline-table;");

window.setTimeout(function(){
Expand Down

0 comments on commit acd145f

Please sign in to comment.