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

Navigator in Day Pilot Lite Version

Asked by Manish
8 years ago.

Hello,

I am using Day Pilot Lite Edition For MVC. I want to modify source, so I have downloaded the source code from following link:

https://mvc.daypilot.org/download/

But in this source file Navigator tool is not available. Can you please let me know how can i get the source to modify navigator.

Regards...

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

The Navigator is not included in DayPilot Lite for MVC.

Answer posted by Dan Letecky [DayPilot]
8 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
8 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]
8 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 months old and has been closed. Please create a new question if you have anything to add.