Hi Ksaidi,
I achieved this goal using this code:
$('#kanban').on('itemMoved', function (event) {
var args = event.args;
var itemId = args.itemId;
var idx = $('#kanban_' + itemId).index();
alert(idx);
}
I just get DIV index on parent, using jQuery function. But, I do not know if this will be keep stable between versions…
I thing that position is a basic feature on Kanban like components. This feature will be added in a near future?