The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxDateTimeInput widget requires the following files:
<head><link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css"/><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="../../jqwidgets/jqxdatetimeinput.js"></script><script type="text/javascript" src="../../jqwidgets/jqxcalendar.js"></script><script type="text/javascript" src="../../jqwidgets/globalization/globalize.js"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head>
<div id='jqxdatetimeinput'></div>
<script type="text/javascript"> $(document).ready(function () { $("#jqxdatetimeinput").jqxDateTimeInput({ width: '250px', height: '25px' }); });</script>
$("#jqxdatetimeinput").jqxDateTimeInput(‘setDate’, new Date(2010, 1, 1));To get the result of a function after calling it, you can use the following syntax:
var selectedDate = $("#jqxdatetimeinput'").jqxDateTimeInput(‘getDate’);To set a property(option), you need to pass the property name and value(s) in the jqxDateTimeInput's constructor.
$("#jqxdatetimeinput").jqxDateTimeInput({ formatString: "dd/MM/yyyy" });To get a property(option), you need to pass the property name to the jqxDateTimeInput's constructor.
var formatstring = $("#jqxdatetimeinput").jqxDateTimeInput('formatString');To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to get the selected date after the user clicks on a calendar cell or enters it manually with the keyboard. The example code below demonstrates how to bind to the ‘change’ event of jqxDateTimeInput.
$('#jqxDateTimeInput').on('change', function (event) { var date = event.args.date; });
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="en"><head><title>jQuery DateTimeInput Sample</title><link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css"/><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="../../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/jqxbuttons.js"></script><script type="text/javascript" src="../../jqwidgets/globalization/globalize.js"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head><body><div id='content'> <script type="text/javascript"> $(document).ready(function () { $("#jqxdatetimeinput").jqxDateTimeInput({ width: '250px', height: '25px' }); // init buttons. $("#getDateButton").jqxButton(); $("#setDateButton").jqxButton(); // set new date. $("#setDateButton").click(function () { var date = new Date(); date.setFullYear(2012, 5, 6); $('#jqxdatetimeinput').jqxDateTimeInput('setDate', date); }); // get date. $("#getDateButton").click(function () { var date = $('#jqxdatetimeinput').jqxDateTimeInput('getDate'); alert(date); }); }); </script> <div id='jqxdatetimeinput'></div> <div style="margin-top: 10px;"> <input id="getDateButton" type="button" value="Get Date"/> <input id="setDateButton" type="button" value="Set Date"/> </div></div></body></html>