Skip to content

Commit

Permalink
fix(react-grid): correct displaying "No data" message in Edge (#2332)
Browse files Browse the repository at this point in the history
Fixes #2330
  • Loading branch information
LazyLahtak authored and MaximKudriavtsev committed Sep 27, 2019
1 parent dd5753b commit e16be01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export class TableNoDataCell extends React.PureComponent {
style={{
padding: '50px 0',
...style,
position: 'static !important',
}}
colSpan={colSpan}
{...restProps}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { withStyles } from '@material-ui/core/styles';
const styles = theme => ({
cell: {
padding: theme.spacing(6, 0),
position: 'static !important',
},
textContainer: {
display: 'inline-block',
Expand Down
3 changes: 3 additions & 0 deletions packages/dx-styles/dx-grid-bs4.scss
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,9 @@ button.dx-g-bs4-table-edit-command-cell {
z-index: 300;
background-clip: padding-box;
}
td.dx-g-bs4-fixed-cell{
position: static !important;
}
.dx-g-bs4-fixed-group-cell {
display: inline-block;
}
Expand Down

0 comments on commit e16be01

Please sign in to comment.