Event link to page

I am using scheduler with weekagenda, day, week and month views.

I have set the calendar to read only as i do not want people to be able to add events (i am adding them to the database directly).

I have also added an extra column in the database jID.

When a user clicks the name of an event i would like it to take them to another page:
page.php?jID=$jID

How can i do this? I have searched everywhere!

Thanks.

If you are talking about standalone scheduler

scheduler.attachEvent("onClick", function(id){ window.open("page.php?jID="+scheduler.getEvent(id).jID); return false; });

Also, you will need to add jID to the list of fields in the render_table command.

thankyou :stuck_out_tongue: !!