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 84b65f6 commit 65dbce4Copy full SHA for 65dbce4
grid-markup/grid.html
@@ -27,7 +27,6 @@
27
$( "#dataTable2" ).grid()
28
.grid("widget").height(300).resizable()
29
$( "#dataTable2" ).grid("refresh");
30
- $( "#dataTable2" ).grid("refresh");
31
});
32
</script>
33
</head>
grid-markup/grid.js
@@ -97,7 +97,8 @@ $.widget( "ui.grid", {
97
if ( this.uiGrid.is(":ui-resizable") ) {
98
this.uiGrid.addClass( "ui-grid-resizable" );
99
if ( footHeight < 16) {
100
- footHeight = this.uiGridFoot.height( 16 );
+ this.uiGridFoot.height( 16 );
101
+ footHeight = this.uiGridFoot.height();
102
}
103
} else {
104
this.uiGrid.removeClass( "ui-grid-resizable" );
0 commit comments