Olivier,
Suppose I have a list with one column and a list with several columns.
I want to click on a cell in the one column list and "drag" the contents
of the cell into any cell of the multi-column list. The contents of the
cell would disappear in the first list and when it is released by
the mouse, appear in the cell of the second list. And an event-listener
would need to indicate when this happens.
Also, the contents of these cells would be images, so the
user would get the feel that he can move these "images" around.
And I would want to move cells around in the multi-list also.
Suppose I want to move the contents of a cell into the
a cell that already has data. Then, I would want
to sense that the "drag and drop" has taken place so I can
program the array to shift the current contents of the cell down one row.
Candy