How do I get the event id?

I’m trying to pass the event ID in the url but haven’t seen a way to extract it. Can someone enlighten me?

Line 274 var ‘value’ should contain the event_id

Thanks,

David

270 scheduler.attachEvent(“onLightboxButton”, function(button_id, node, e){
271
272 if(button_id == “print_button”){
273
274 window.open(“https://icms.15thcircuit.co.palm-beach.fl.us/cgi-bin/case/bannerview.c
gi?ucn=”+value,’_blank’);
275
276 }
277
278 var value = scheduler.formSection(‘casenumber’).getValue();

You can try something like

var id = scheduler.getState().select_id;

awesome thanks