Hi,
I have styled my data table with
'overflowY': 'scroll',
'overflowX': 'scroll',
Why does it make a double scroll on both the horizontal and vertical scroll?
It looks messy, so is it possible to only have a single scroll?
Hi,
I have styled my data table with
'overflowY': 'scroll',
'overflowX': 'scroll',
Why does it make a double scroll on both the horizontal and vertical scroll?
It looks messy, so is it possible to only have a single scroll?
changing from ‘scroll’ to ‘auto’ fixed it;
'overflowY': 'auto',
'overflowX': 'auto',