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

Set click event

Asked by poupoune
10 years ago.

Hi,
I have a DayPilotScheduler.Scheduler, with no ClickHandling.
How to set a click on an event, so as the same action raises than an eventMenuClickPostBack ?

In order to test the click event, I tried :
dps1.EventClickHandling='JavaScript';
dps1.EventClickJavaScript= function() { alert('Hi there'); };

But no success...
Thanks for help.

Answer posted by Dan Letecky [DayPilot]
10 years ago.

On the server side:

DayPilotScheduler1.EventClickHandling="JavaScript";
DayPilotScheduler1.EvenClickJavaScript="dps1.eventMenuClickPostBack(e, 'Command')";

Comment posted by Dan Letecky [DayPilot]
10 years ago.

If you want to do it on the client side, check what HTML/JavaScript this produces. The 5.8 version might use a bit different client-side API, different from the current API described at http://api.daypilot.org/.

Comment posted by poupoune
10 years ago.

Yes, I'd like to do it on client side.

I wish that a click on the dps1.event would raise the same as the dps1.eventMenuClickPostBack function

Comment posted by Anonymous
10 years ago.

Thanks Dan for your patience.
I wonder why dps1.eventClick=function(){alert'test');}; does not work
whereas dps1.eventMenuClickPostBack=function(){alert'test');}; does

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