Я получил следующую настройку для функции перетаскивания:
const listDragOptions = {
handle: ".camera, .texter", // dragged by either camera or edit icon
//revert: true, // so dragged elements fall back to their original position,
revertDuration: 200, // the element goes back instantly, no need for effects on this one
snap: true, // snap to table cell edges
helper: "clone", // create a cloned element instead of moving the original one
drag: function(event, ui) {
// tell me which handle is being used!
}
}
В основном мне нужно знать, на какой из двух дескрипторов «.camera, .texter» пользователь нажал, чтобы добиться функциональности перетаскивания.Это кажется хитрым.Я ничего не могу найти в API, поэтому я действительно готов принять любой грязный хак.
Спасибо за все ответы!