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);
overflow: auto;
}
.e-gridpager {
display: none;
}
}
`;
@ -220,6 +223,7 @@ const TableComponent = memo(
}
if (grid.current) {
props.height && reCalculatePageSize(grid, props.height);
debugger;
grid.current.selectionModule.selectRow(props.selectedRowIndex);
}
}}