You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With showFilterBar turned on grid does not display data. Cause: wrong way of setting css height. Either use $element.height(value) or $element.css('height', value + 'px').
if (this.options.showFilterBar) {
this.content.height(parseFloat(this.content.css("height")) - 32)
}
The text was updated successfully, but these errors were encountered:
With showFilterBar turned on grid does not display data. Cause: wrong way of setting css height. Either use
$element.height(value)
or$element.css('height', value + 'px')
.The text was updated successfully, but these errors were encountered: