Comment faire pour obtenir l'index de l'élément sélectionné dans KendoMobileListView

Je veux savoir comment je peux obtenir l'index de l'Élément sélectionné dans le Kendo mobile ListView. C'est mon code

function loadInformation(){
$('#Template').kendoMobileListView({        
    dataSource: Info,
    template: '<table  style="width: 100%"><tr><td><p>${a = (typeof data.ServiceLocationCompanyName !== "undefined") ? data.ServiceLocationCompanyName : data.LastName + ", " + data.FirstName}</td><td style="width: 84px"><img src=${data.Icon} /></td></tr></table>',

    //Added this event to capture the index of selected Item but was unsuccessful
    click: function(){
    var index = this.select().index(),
    console.log(index);        
    }
});

Lorsque je l'exécute, il me donne un message d'erreur indiquant

TypeError: Object [object Object] has no method 'select'

Que dois-je faire ici ? Comment puis-je obtenir l'index de l'élément sélectionné ? cheers