Scheduler.Net and events

Hi,

I am reviewing the Scheduler.Net product and it look very promising.

But I am having trouble using the client side events.
Some events are working fine but som events are not triggered at all.

The onXLS is working fine for example
scheduler.attachEvent(“onXLS”, function () {
alert(‘onXLS’);
});

But I can not get these to work
scheduler.attachEvent(“onSchedulerReady”, function () {
alert(‘onSchedulerReady’);
});
scheduler.attachEvent(“onTimelineCreated”, function (config) {
alert(‘onTimelineCreated’);
});

I run these after
@Html.Raw(Model.Scheduler.GenerateCSS())
@Html.Raw(Model.Scheduler.GenerateJS())
@Html.Raw(Model.Scheduler.GenerateHTML())

I am using VS13 and it is a asp.net mvc5 project

Hello,
some of events are triggered from the code generated by ‘GenerateHTML()’, so they won’t be catched by a handlers attached after this section.

You call your code after this calls, that adds links to JS and CSS source files of the component

@Html.Raw(Model.Scheduler.GenerateCSS()) @Html.Raw(Model.Scheduler.GenerateJS())
and before this: @Html.Raw(Model.Scheduler.GenerateHTML())

Hi,

Thant worked very well, the events are now handled.

I thought I could use any of these call backs to dynamically adjust the _load_url parameter for the initial Data request.
But it seems I could not add anything to the querystring from these events.

I am sucessfully doing this with the onBeforeViewChange event.
Is there any way to dynamically adjust the _load_url to add to the querystring for the initial data-request?

Kindly
//floyd