Some special effect of the Drag & Drop of dhtmlxGrid

Hi all,

Using the drag & drop feature , i meets the drag up issue .
There’re three items in one grid like:
A
B
C
i want to place C upon B, i must drag c to the position of A to make that . If i just drag C to the position of B, the position of C and B can’t replace .
However the drag down has no problem. If i drag B upon C, and then drop B , we can see the position of B and C replace .

Could anyone tell me why the drag up can’t work the samely with drag down.

I cannot see any inconsistency in those scenarios. In both cases after you drop item it placed under [item on which you drop it.
When you drop C on A, C placed under A
When you drop B on C, B placed under C

The difference bettwn drag up and drag down is as the following :
A
B
C

We drop B on the position of C we can see B below C now .
But if i drop B on the position A , B still below A , however i want B will upon A after dropping B on A as the effect after the action dropping A on B.

Let me take another example , if i drop C on A we can see C above B .
But if i drop C on B , why B and C can’t replace

Can the executing of the drag up the same with drag down ?

But if i drop B on the position A , B still below A
This is expected. If you drop B on A, B is under A. If you drop B on C, B under C.
If A is first row in your grid, to move B on first position you should drop B on grid header.

Thanks, got it . The component is cool .