Hi Team,
I want to get the Tab Id, position or title when it is removed.
If I do this
$(‘#jqxTabs’).on(‘removed’, function (event) {
var position = event.args.item;
});
I will not be able to find the Id based on this position because the Tab will have alreday been removed
OR
Is it possible to get a Tab new position after dragEnd ? This can help me also to keep tabs positions in an Array with the corresponding ID each time a tab is adedd or moved from one position to another, so I can match the deleted position with the Id when I tab is removed
Because my Goal is to get the Tab Id when it is removed
Thanks