Kendo react grid - onreorder and onresize issue

1 Answer 60 Views
Grid
Mir
Top achievements
Rank 1
Mir asked on 11 Jan 2022, 10:01 AM

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.

1 Answer, 1 is accepted

Sort by
0
Stefan
Telerik team
answered on 11 Jan 2022, 12:27 PM

Hello,

This is a known issue and it can be monitored here:

https://github.com/telerik/kendo-react/issues/1176

I will add your report to raise its priority.

Apologies for the inconvenience this may have caused you.

Regards,
Stefan
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Grid
Asked by
Mir
Top achievements
Rank 1
Answers by
Stefan
Telerik team
Share this question
or