Hello,
I cannot find in the documentation.
if I've something like this in scheduler: 
dp.rowHeaderColumns = [
        {text: 'Name', display: "name"},
        {text: 'Country', display: "country"},
    ];
dp.resources = [
       {id: "1", name: "A", country: 'IT'},
       {id: "2", name: "B", country: 'UK'},
];
I need to get the country of the selected cell.
I can only get the id with args.resource
thanks