Documentation

Getting Started

jqxDateTimeInput represents a jQuery datetimeinput widget that enables the user to select a date or time using a popup calendar display or by keyboard input into the text field.
Every UI widget from jQWidgets toolkit needs its JavaScript files to be included in order to work properly.

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>

The next step is to create html element within the body of the html document.
<div id='jqxdatetimeinput'></div>

The last step is to initialize the widget by adding the following script to the html document:
<script type="text/javascript">
$(document).ready(function () {
$("#jqxdatetimeinput").jqxDateTimeInput({ width: '250px', height: '25px' });
});
</script>

To call a function(method), you need to pass the method name and parameters(if any) in the jqxDateTimeInput’s constructor.
$("#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;
});

Basic Sample

<!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>

The result of the above code is: