Suite Pro v7.3.5 Grid can't drag on react.js

Hi,

I can’t use drag mode when I used pro version(v7.3.5) of suite grid with react.js.
Then I read the source code, I found that it’s because the type of item.id and data.target are different, so I modify the source code on line 8278-8279

from
findIndex(function (item) { return item.id === data.start; });
to
findIndex(function (item) { return item.id.toString() === data.start; });

and it finally can work.

ps. Another way to make it active is change my data id to string, but I think the type of id is number seems reasonable .

I don’t know if the code is forget to add this or I use wrong way of this grid.
Also, I’m not sure if I change these two line of source code will cause any side effect or not…
Just let your development team to know, thanks.

Thank you for your report.
The problem is confirmed. We’ll try to fix it in one of the future updates.

We have fixed your reported problem in the latest (v.7.3.9) dhx.Suite udpate.
Please, try to download the latest available dhx.Suite to get that fix.
Thank you for your report.