Table pagination css fixes

This commit is contained in:
Satbir Singh 2020-04-06 10:23:19 +00:00
parent 6b03adb5c0
commit 4e0fdabae2

View File

@ -62,6 +62,9 @@ const StyledGridComponent = styled(GridComponent)`
height: calc(100% - 50px); height: calc(100% - 50px);
overflow: auto; overflow: auto;
} }
.e-gridpager {
display: none;
}
} }
`; `;
@ -220,6 +223,7 @@ const TableComponent = memo(
} }
if (grid.current) { if (grid.current) {
props.height && reCalculatePageSize(grid, props.height); props.height && reCalculatePageSize(grid, props.height);
debugger;
grid.current.selectionModule.selectRow(props.selectedRowIndex); grid.current.selectionModule.selectRow(props.selectedRowIndex);
} }
}} }}