I am new to day pilot scheular, I am evaluating day pilot light version.
I have added following events, to view the context menu in time range section.
It work fine with IE8 and FF. but. Nothing happens in IE9
Can any budy please help me to identify, what is wrong in the code.
a.
<DayPilot:DayPilotMenu ID="mnu_a" ClientObjectName="mnu_ACreate">
.....
</DayPilot:DayPilotMenu>
b.
Protected Sub SetEvent_DayPilot1(ByVal sender As Object, ByVal e As DayPilot.Web.Ui.Events.BeforeEventRenderEventArgs) Handles DayPilot1.BeforeEventRender
e.ContextMenuClientName = "mnu_a"
End Sub
c.
function onTimeRangeSelected(start, end, resource) {
// mouseButton : use to store which button click using javascript code
if (mouseButton == 'RIGHT') {
var selection = new DayPilot.Selection(start, end, resource, dps1);
mnu_ACreate.show(selection);
return;
}
}