Get Units by position of the mouse

hi everybody, how i get the Unit with the mouse position ? i have the position in the function onEmptyClic(e).

scheduler.createUnitsView({
name:“daybypeople”,
property:“personnel”,
size:10,
step:5,
list:elements
});

scheduler.attachEvent(“onEmptyClick”, function (date, e){
//get the unit

			});

thanks !

You can use getActionData method

var unit_id = scheduler.getActionData(e).section;

well ! thx !