As a matter of fact, I've found a way using jQuery.mouseover(), but it seems way too complicated:
$(".sapUiTableTr").mouseover(function() {
var id = this.id;
var index = sap.ui.getCore().byId(id).getIndex();
var path = oTable.getBinding().getContexts()[index].getPath();
var data = oTable.getModel().getProperty(path);
jQuery.sap.log.info("row mouseover " + data.title);
}
Is there a simpler way?
-- Micha