search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

DP Scheduler: Hiding versions using onBeforeEventRender

Asked by David Liquori
4 years ago.

I'm using onBeforeEventRender to modify underlying event data before it is rendered. Everything is working correctly except for this...

While I can modify the data surrounding versions, the version is still displayed as the data prior to processing through onBeforeEventRender. I can even delete the event and it still displays. Also, there are both references to barHidden and barVisible in different places in the support literature.

Help!

Thanks,
David

dp2.onBeforeEventRender = function(args) {
if (args.e.iscomplete == true){
if(typeof args.e.versions !== 'undefined'){
//delete args.e.versions;
args.e.versions[0].barHidden = true;
//args.e.versions[0].barVisible = false;
console.log(args);
}
}
}

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.