Hi, I just use the tool in this page
http://csg.syncfusion.com/ and using ejMenu and ejDatepicker in ASP.NET MVC with angularjs but there's a problem is I have to use combined
two js file (ejMenu+ejDatepicker) ,can't seperate load them or one of the compoment won't render,below is how scripts put;
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script src="~/Scripts/Syncfusion/ej.widget.datepicker.js"></script>
<script src="~/Scripts/Syncfusion/ej.widget.menu.js"></script>
<script src="~/Scripts/App.js"></script>
<script type="text/javascript" src="https://cdn.syncfusion.com/14.2.0.26/js/common/ej.widget.angular.min.js"></script>
then the datepicker won't render but menu does,but if I use scripts below
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script src="~/Scripts/Syncfusion/ej.widget.datepickerAndMenu.js"></script>
<script src="~/Scripts/App.js"></script>
<script type="text/javascript" src="https://cdn.syncfusion.com/14.2.0.26/js/common/ej.widget.angular.min.js"></script>
it works, so i must use the combined script? thanks.