Hi,
I'm trying to use position-absolute for one element inside a <td> tag and try to position it outside of the table but unsuccessful. Is there a way to do it? I know it's stack order problem but I don't know how to solve it. Like in the photo below, I want to position the cell on top of the table.
the code is kind of like below.
const patientCell = props => {
return <td style={{position:'relative',
overflow: "visible",
}}>
<div style={{position:'absolute', top: '-50px', Zindex: 10000}}>
cell I want to position outside table
</div>
</td>
}
<Grid>
<Column
title="Patient Name"
field="fullName"
columnMenu={ColumnMenu}
cell={patientCell}
/>
</Grid>