it appears that the function moveRowTo operates the following way:
insert is called on the row, essentially copying it to its new location
delete is called on the row, deleting the old copy.
How can I move a row in the UI, WITHOUT triggering the delete action? The reason I ask is, every time the delete action occurs, my PHP backend deletes the row. This means that even when moving a row, the row gets deleted (because, like i said, the delete action occurs during a move).
Any advice is greatly appreciated.