We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be72c4 commit ce0e65bCopy full SHA for ce0e65b
grid-spf/grid.js
@@ -211,8 +211,8 @@ $.widget( "ui.grid", {
211
this.uiGridHeadAndFoot.css( "padding-right", paddingRight + "px" );
212
this.uiGridHeadTableAndFootTable.css( "padding-right", "1px");
213
} else {
214
- this.uiGridHeadAndFootAndTables.css( "padding-right", 0 );
215
- this.uiGridHeadAndFootAndTables.css( "padding-right", null );
+ // Have to set to 0 before removing property or it "sticks"
+ this.uiGridHeadAndFootAndTables.css( "padding-right", 0 ).css( "padding-right", null );
216
}
217
218
this._trigger( "refresh" );
0 commit comments