So this code works:
dp.onEventMoving = function(args) {
alert(args.start + " " + args.end + " " + args.resource);
};
The args.resource returns the column resource id: g1
BUT when I use this, I get undefined for all 3 props above.
dp.onEventMoved = function (args) {
alert(args.start + " " + args.end + " " + args.resource);
}
Obviously the event moved ends up triggered after and once event is set in either existing column or new one. I want to pick up whatever resource it ends up in.
Make sense?
J