Hello
When trying to drag column for reordering, then small handle appears representing dragged column (see picture of it:
https://ibb.co/8L1SsgBt). When column is dragged on position where it cannot be dropped, f.x. target column has
nodrop: true
, I expected that handle will update its state, replacing icon on it to represent that column cannot be dropped here, but it seems not a case, it still shows that column can be dropped in prohibited place, but when I release mouse button - nothing happens. My intention was to provide visual feedback to user, where column can be dropped and where is not. Does PQGrid has some API or tools to acheve that? I implemented
columnDrag event handler, which updates table header columns model with
nodrop properties once column start being dragged
I dig a source code a bit trying to find answer, but without much success, but I found piece of code, which seems to be responsible for
nodrop handling, and it appears to be empty (see picture
https://ibb.co/mCsHRypQ)
So, my question is, can I somehow update drag handle to provide feedback where column can be dragged and where not?
Thanks in advance