Comment posted by Dan Letecky [DayPilot] 10 years ago.
The Navigator is not included in DayPilot Lite for MVC.
Answer posted by Dan Letecky [DayPilot] 10 years ago.
Sorry - it is but it doesn't have any server-side part. The JavaScript source can be found in Demo/Scripts/DayPilot/src folder.
Comment posted by Vineet More 10 years ago.
Hi Dan,
So modification of Javascript will modify the Navigator or we cannot modify the navigator in the Lite Version of MVC?
Regards
Vineet More
Comment posted by Dan Letecky [DayPilot] 10 years ago.
If you are creating the navigator using @Html.DayPilotNavigator config helper in MVC then you are using the Pro version. The server-side Navigator bindings (including the config Html helper) are not included in the MVC Lite version.
You can create the navigator using the direct JavaScript API because it's included in the JavaScript library in the Lite version:
<div id="dp"></div>
<script type="text/javascript">
var dp = new DayPilot.Navigator("dp");
// ...
dp.init();
</script>
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.