Hello Nicholai,
If you need to highlight the entire column when a cell is selected I would suggest handling the change event of the Scheduler component. In the event handler, you can check the index of the currently selected cell using the 'k-selected' class. Then you can find every cell with the same index on each row and apply custom styling:
change: function(e){
$('.custom').removeClass('custom')
var index = $('.k-selected').index() + 1
$('.k-scheduler-content tr td:nth-child(' + index +')').addClass('custom')
},
The approach is demonstrated in the Dojo linked here.
Please take a look at the provided example and let me know if the suggested approach is helpful in achieving the desired result.
Until you confirm that the appearance demonstrated in the Dojo example above is the desired one I will set the status of the issue to 'Under Review'.
Looking forward to your reply.
Regards,
Neli
Progress Telerik