Hi
when adding this to a Grid, the "sticky" text doesnt dissapear after resizing.
This happens only when trying to resize.
resizable={true}
reorderable={true}
onColumnReorder={(e) => {
this.setState({
...this.state,
cols: e.columns,
});
}}
onColumnResize={(e) => {
if (e.end) {
this.setState({
...this.state,
cols: e.columns,
});
}
}}
As you can see the title "Name" is still there even thou I am done with my resize.
To make it dissapear, I need to click anywhere on the page
This only happens when you are using both onresize and onreorder.