onListAfterDrop
срабатывает после перетаскивания карточки
void onListAfterDrop(object context,Event ev,object list);
context | object | объект с параметрами драг-н-дроп (подробнее в описании) |
ev | Event | объект нативного события |
list | object | объект листа, в котором произошло событие |
Example
$$("myBoard").attachEvent("onListAfterDrop", function(context,ev,list){
// ваш обработчик
});
Related samples
Details
У объекта context следующие свойства:
- from - лист, из которого перетянули карточку
- to - лист, на который перетянули карточку
- source - ID карточки/карточек
- target - the ID of the drop target, null for drop on empty space
- start - ID карточки, с которой началось перетаскивание
- index - the index of the item in the column
- x_offset - the left offset between the pointer and the dragged list
- y_offset - the top offset between the pointer and the dragged list
See also
Наверх