Here's what I've done:
- Created an Electron app, and verified that it works
- Copied the Kendo UI js and styles directories into my app's directory
- Modified the index.html file per the demo instructions to use a datepicker:
<!DOCTYPE html><html> <head> <title>Welcome to Kendo UI!</title> <link href="../telerik/styles/kendo.common.min.css" rel="stylesheet" /> <link href="../telerik/styles/kendo.default.min.css" rel="stylesheet" /> <script src="../telerik/js/jquery.min.js"></script> <script src="../telerik/js/kendo.all.min.js"></script> </head> <body> <input id="datepicker" /> <script> $(function() { $("#datepicker").kendoDatePicker(); }); </script> </body></html>
However, when I run the app, I get a text box on the page; not the datepicker.
Is there something else I need to do?
