I have my ajaxSuccess
event listener for my repeater form (basics) like this:
$(document).on('ajaxSuccess', function(event, context, data, status) {
if (context.handler === "formBasics::onAddItem") {
// do something on add item
}
if (
context.handler === 'formBasics::onRemoveItem' ||
context.handler === 'formBasics::onDuplicateItem' ||
context.handler === 'formBasics::onMoveItem'
) {
// do something on remove, duplicate or move item
// here the onMoveItem isn't triggered
}
});
Now, is it somehow possible to also listen to the move item event?