Dan ... I can't get it working ... this is what I have.
$(document).ready(function() {
var dps1 = DayPilot.Scheduler("dps1");
var dps2 = DayPilot.Scheduler("dps2");
$(dps1.nav.scroll).scroll(function() {
dps2.nav.scroll.scrollLeft = dps1.nav.scroll.scrollLeft;
});
$(dps2.nav.scroll).scroll(function() {
dps1.nav.scroll.scrollLeft = dps2.nav.scroll.scrollLeft;
});
});
Its not throwing any errors.