The control tried to write some javascript on my page, something like this:
<script type='text/javascript'>
/* DayPilot Pro for ASP.NET MVC: 7.4.5587.1 */
var v = new DayPilot.Scheduler('dpScheduler');
Uncaught ReferenceError: DayPilot is not defined
v.allowMultiSelect = true;
v.api = 1;
...
...
</script>
In my application, I load all the resources/javascript later. So this gives me error "DayPilot is not defined".
Cannot all this script be wrapped in the onpageload function, so that my daypilot.js file is available when this code tried to execute?
Thanks.