UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

31 lines (29 loc) 1.92 kB
<!DOCTYPE html> <html ng-app="demoApp" lang="en"> <head> <meta name="keywords" content="AngularJS Calendar, Month Calendar, MonthCalendar, DateTimeInput, DateTimePicker, Date Picker" /> <meta name="description" content="AngularJS DateTime Input example. This example demonstrates a DateTimePicker built with Angular JS." /> <title id='Description'>This demo demonstrates the AngularJS DateTimeInput widget. Click the calendar button to open the popup and select a date from the calendar. You can also enter a date by typing into the jqxDateTimeInput text input field. </title> <link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../../scripts/angular.min.js"></script> <script type="text/javascript" src="../../../scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../../scripts/demos.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxdatetimeinput.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcalendar.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxtooltip.js"></script> <script type="text/javascript" src="../../../jqwidgets/globalization/globalize.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxangular.js"></script> <script type="text/javascript"> var demoApp = angular.module("demoApp", ["jqwidgets"]); demoApp.controller("demoController", function ($scope) { $scope.dateTimeInputSettings = { width: '250px', height: '25px' }; }); </script> </head> <body ng-controller="demoController"> <jqx-date-time-input jqx-settings="dateTimeInputSettings"></jqx-date-time-input> </body> </html>