| Name | Type | Default | 
                
                    | animationType | String | 'slide' | 
                
                    | 
                            
                                Sets or gets the type of the animation.
                            Possible Values: 'fade'
 'slide'
 'none'
 Code example
                                Set the animationTypeproperty $('#jqxDateTimeInput').jqxDateTimeInput({animationType: 'none'});
                        
 
                                Get the animationTypeproperty. var animationType = $('#jqxDateTimeInput').jqxDateTimeInput('animationType'); 
 | 
                
                    | allowNullDate | Boolean | true | 
                
                    | 
                            
                                Determines whether Null is allowed as a value.
                             Code example
                                Set the allowNullDateproperty. $('#jqxDateTimeInput').jqxDateTimeInput({allowNullDate: false});
 
                                Get the allowNullDateproperty. var allowNullDate = $('#jqxDateTimeInput').jqxDateTimeInput('allowNullDate');
 | 
                
                    | allowKeyboardDelete | Boolean | true | 
                
                    | 
                            
                                Determines whether BackspaceandDeletekeys are handled by the widget. Code example
                                Set the allowKeyboardDeleteproperty. $('#jqxDateTimeInput').jqxDateTimeInput({allowKeyboardDelete: false});
 
                                Get the allowKeyboardDeleteproperty. var allowKeyboardDelete = $('#jqxDateTimeInput').jqxDateTimeInput('allowKeyboardDelete');
 | 
                
                    | clearString | String | 'Clear' | 
                
                    | 
                            
                                Sets or gets the 'Clear' string displayed when the 'showFooter' property is true.
                             Code example
                                Set the clearStringproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ clearString: 'Clear' });
 
                                Get the clearStringproperty. var clearString = $('#jqxDateTimeInput').jqxDateTimeInput('clearString'); 
 | 
                
                    | culture | String | default | 
                
                    | 
                            
                                Sets or gets the jqxDateTimeInput's culture. The culture settings are contained within a
                            file with the language code appended to the name, e.g. jquery.glob.de-DE.js for
                            German. To set the culture, you need to include the jquery.glob.de-DE.js and set
                            the culture property to the culture's name, e.g. 'de-DE'.
                             Code example
                                Set the cultureproperty. $('#jqxDateTimeInput').jqxDateTimeInput({culture: 'en-US' });
 
                                Get the cultureproperty. var culture = $('#jqxDateTimeInput').jqxDateTimeInput('culture'); 
 | 
                
                    | closeDelay | Number | 400 | 
                
                    | 
                            
                                Specifies the animation duration of the popup calendar when it is going to be hidden.
                             Code example
                                Set the closeDelayproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ closeDelay: 200 }); 
 
                                Get the closeDelayproperty. var closeDelay = $('#jqxDateTimeInput').jqxDateTimeInput('closeDelay'); 
 | 
                
                    | closeCalendarAfterSelection | Boolean | true | 
                
                    | 
                            
                                Sets or gets whether or not the popup calendar must be closed after selection.
                             Code example
                                Set the closeCalendarAfterSelectionproperty . $('#jqxDateTimeInput').jqxDateTimeInput({ closeCalendarAfterSelection:false}); 
 
                                Get the closeCalendarAfterSelectionproperty. var closeCalendarAfterSelection = $('#jqxDateTimeInput').jqxDateTimeInput('closeCalendarAfterSelection'); 
 | 
                
                    | dropDownHorizontalAlignment | String | 'left' | 
                
                    | 
                            
                                Sets the DropDown's alignment.
                            Possible Values: 'left'
 right'
 Code example$('#jqxDateTimeInput').jqxDateTimeInput({ dropDownHorizontalAlignment: 'right'}); 
 
                                Get the dropDownHorizontalAlignmentproperty. var dropDownHorizontalAlignment = $('#jqxDateTimeInput').jqxDateTimeInput('dropDownHorizontalAlignment'); 
 | 
             
                    | dropDownVerticalAlignment | String | 'bottom' | 
                
                    | 
                            
                                Sets or gets the DropDown's alignment.
                            Possible Values: 'top'
 'bottom'
 Code example$('#jqxDateTimeInput').jqxDateTimeInput({ dropDownVerticalAlignment: 'top'}); 
 
                                Get the dropDownVerticalAlignmentproperty. var dropDownVerticalAlignment = $('#jqxDateTimeInput').jqxDateTimeInput('dropDownVerticalAlignment');
 | 
                
                    | disabled | Boolean | false | 
                
                    | 
                            
                                Determines whether the widget is disabled.
                             Code example
                                Set the disabledproperty. $('#jqxDateTimeInput').jqxDateTimeInput({disabled: false});
 
                                Get the disabledproperty. var disabled = $('#jqxDateTimeInput').jqxDateTimeInput('disabled');
 | 
                
                    | enableBrowserBoundsDetection | Boolean | false | 
                
                    | 
                            
                                When this property is set to true, the popup calendar may open
                            above the input, if there's not enough space below the DateTimeInput.
                             Code example
                                Set the enableBrowserBoundsDetectionproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ enableBrowserBoundsDetection: false}); 
 
                                Get the enableBrowserBoundsDetectionproperty. var enableBrowserBoundsDetection = $('#jqxDateTimeInput').jqxDateTimeInput('enableBrowserBoundsDetection'); 
 | 
                
                    | enableAbsoluteSelection | Boolean | false | 
                
                    | 
                            
                                This setting enables the user to select only one symbol at a time when
                            typing into the text input field.
                             Code example
                                Set the enableAbsoluteSelectionproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ enableAbsoluteSelection: true });
                        
 
                                Get the enableAbsoluteSelectionproperty. var enableAbsoluteSelection = $('#jqxDateTimeInput').jqxDateTimeInput('enableAbsoluteSelection'); 
 | 
                
                    | firstDayOfWeek | Number | 0 | 
                
                    | 
                            
                                Sets or gets which day to display in the first day column. By default the calendar displays
                            'Sunday' as first day.
                             Code example
                                Set the firstDayOfWeekproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ firstDayOfWeek: 1 });
 
                                Get the firstDayOfWeekproperty. var firstDayOfWeek = $('#jqxDateTimeInput').jqxDateTimeInput('firstDayOfWeek'); 
 | 
                
                    | formatString | String | dd/MM/yyyy | 
                
                    | 
                            
                                Sets or gets the date time input format of the date.
                            Possible Values: 'd'-the day of the month
 'dd'-the day of the month
 'ddd'-the abbreviated name of the day of the week
 'dddd'-the full name of the day of the week
 'h'-the hour, using a 12-hour clock from 1 to 12
 'hh'-the hour, using a 12-hour clock from 01 to 12
 'H'-the hour, using a 24-hour clock from 0 to 23
 'HH'-the hour, using a 24-hour clock from 00 to 23
 'm'-the minute, from 0 through 59
 'mm'-the minutes,from 00 though59
 'M'-the month, from 1 through 12;
 'MM'-the month, from 01 through 12
 'MMM'-the abbreviated name of the month
 'MMMM'-the full name of the month
 's'-the second, from 0 through 59
 'ss'-the second, from 00 through 59
 't'-the first character of the AM/PM designator
 'tt'-the AM/PM designator
 'y'-the year, from 0 to 99
 'yy'-the year, from 00 to 99
 'yyy'-the year, with a minimum of three digits
 'yyyy'-the year as a four-digit number
 Code example
                                Set the formatStringproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ formatString: "dd"});
 
                                Get the formatStringproperty. var formatString = $('#jqxDateTimeInput').jqxDateTimeInput('formatString');
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the height of the jqxDateTimeInput widget.
                             Code example
                                Set the heightproperty. $('#jqxDateTimeInput').jqxDateTimeInput({  height: '25px'});
 
                                Get the heightproperty. var height = $('#jqxDateTimeInput').jqxDateTimeInput('height');
 | 
                
                    | min | Date | Date(1900, 1, 1) | 
                
                    | 
                            
                                Sets or gets the jqxDateTimeInput's minumun date.
                             Code example
                                Set the minproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ min: new Date(2000, 0, 1) });
 
                                Get the minproperty. var minDate = $('#jqxDateTimeInput').jqxDateTimeInput('min');
 | 
                
                    | max | Date | Date(2100, 1, 1) | 
                
                    | 
                            
                                Sets or gets the jqxDateTimeInput's maximum date.
                             Code example
                                Set the maxproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ max: new Date(2013, 0, 1) });
 
                                Get the maxproperty. var maxDate = $('#jqxDateTimeInput').jqxDateTimeInput('max');
 | 
                
                    | openDelay | Number | 350 | 
                
                    | 
                            
                                Specifies the animation duration of the popup calendar when it is going to be displayed.
                             Code example
                                Set the openDelayproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ openDelay: 200 }); 
 
                                Get the openDelayproperty. var openDelay = $('#jqxDateTimeInput').jqxDateTimeInput('openDelay'); 
 | 
                
                    | placeHolder | String | "" | 
                
                    | 
                            
                                Determines the widget's place holder displayed when the widget's value is null.
                             Code example
                                Set the placeHolderproperty. $('#jqxDateTimeInput').jqxDateTimeInput({placeHolder: "Null Value"});
 
                                Get the placeHolderproperty. var placeHolder = $('#jqxDateTimeInput').jqxDateTimeInput('placeHolder');
 | 
                
                    | popupZIndex | Number | 20000 | 
                
                    | 
                            
                                Sets or gets the popup's z-index.
                             Code example
                                Set the popupZIndexproperty. $("#jqxDateTimeInput").jqxDateTimeInput({popupZIndex: 999999});
 
                                Get the popupZIndexproperty. var zIndex = $('#jqxDateTimeInput').jqxDateTimeInput('popupZIndex'); 
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts. Code example
                                Set the rtlproperty. $('#jqxDateTimeInput').jqxDateTimeInput({rtl : true}); 
 
                                Get the rtlproperty. var rtl = $('#jqxDateTimeInput').jqxDateTimeInput('rtl'); 
 | 
                
                    | readonly | Boolean | false | 
                
                    | 
                            
                             Code example
                                Set the readonlyproperty . $('#jqxDateTimeInput').jqxDateTimeInput({ readonly: true});
 
                                Get the readonlyproperty. var readonly = $('#jqxDateTimeInput').jqxDateTimeInput('readonly'); 
 | 
                
                    | showFooter | Boolean | false | 
                
                    | 
                            
                                Sets or gets a value indicating whether the dropdown calendar's footer is displayed.
                             Code example
                                Initialize a jqxDateTimeInput with the showFooterproperty specified. $('#jqxDateTimeInput').jqxDateTimeInput({ showFooter: true });
 
                                Get the showFooterproperty. var showFooter = $('#jqxDateTimeInput').jqxDateTimeInput('showFooter'); 
 | 
                
                    | selectionMode | String | 'default' | 
                
                    | 
                            
                                Sets or gets the dropdown calendar's selection mode.
                            Possible Values: 'none'
 'default'
 'range'
 Code example
                                Set the selectionModeproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ selectionMode: 'range' });
 
                                Get the selectionModeproperty. var selectionMode = $('#jqxDateTimeInput').jqxDateTimeInput('selectionMode'); 
 | 
                
                    | showWeekNumbers | Boolean | true | 
                
                    | 
                            
                                Sets or gets a value whether the week`s numbers are displayed.
                             Code example
                                Set the showWeekNumbersproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ showWeekNumbers: false });
 
                                Get the showWeekNumbersproperty. var showWeekNumbers = $('#jqxDateTimeInput').jqxDateTimeInput('showWeekNumbers'); 
 | 
                
                    | showTimeButton | Boolean | false | 
                
                    | 
                            
                                Determines whether the time button is visible.
                             Code example
                                Set the showTimeButtonproperty. $('#jqxDateTimeInput').jqxDateTimeInput({showTimeButton: true});
 
                                Get the showTimeButtonproperty. var showTimeButton = $('#jqxDateTimeInput').jqxDateTimeInput('showTimeButton');
 | 
                
                    | showCalendarButton | Boolean | true | 
                
                    | 
                            
                                Determines whether the calendar button is visible.
                             Code example
                                Set the showCalendarButtonproperty. $('#jqxDateTimeInput').jqxDateTimeInput({showCalendarButton: false});
 
                                Get the showCalendarButtonproperty. var showCalendarButton = $('#jqxDateTimeInput').jqxDateTimeInput('showCalendarButton');
 | 
                
                    | theme | String | '' | 
                
                    | 
                            
                                Sets the widget's theme.
                             
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file.
                        In order to set a theme, you need to do the following:
                         | 
   	
				| template | String | 'default' | 
			
				| 
						
							Determines the template as an alternative of the default styles.
						Possible Values: 'default' - the default template. The style depends only on the "theme" property value.
 'primary' - dark blue style for extra visual weight.
 'success' - green style for successful or positive action.
 'warning' - orange style which indicates caution.
 'danger' - red style which indicates a dangerous or negative action.
 'info' - blue button, not tied to a semantic action or use.
 Code examples
							Set the templateproperty. $("#jqxDateTimeInput").jqxDateTimeInput({ template: 'primary'});
 
							Get the templateproperty. var template = $('#jqxDateTimeInput').jqxDateTimeInput('template');
 | 
                
                    | textAlign | String | left | 
                
                    | 
                            
                                Sets or gets the position of the text.
                             Code example
                                Set the textAlignproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ textAlign: "left"});
 
                                Get the textAlignproperty. var textAlign = $('#jqxDateTimeInput').jqxDateTimeInput('textAlign'); 
 | 
                
                    | todayString | String | 'Today' | 
                
                    | 
                            
                                Sets or gets the 'Today' string displayed in the dropdown Calendar when the 'showFooter' property is true.
                             Code example
                                Set the todayStringproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ todayString: 'Today' });
 
                                Get the todayStringproperty. var todayString = $('#jqxDateTimeInput').jqxDateTimeInput('todayString'); 
 | 
                
                    | value | Date | Today's Date | 
                
                    | 
                            
                                Sets or gets the jqxDateTimeInput value.
                             Code example
                                Set the valueproperty. 
// use JavaScript Date
$('#jqxDateTimeInput').jqxDateTimeInput({ value: new Date(2000, 0, 1) });
// use String
$('#jqxDateTimeInput').jqxDateTimeInput({ value: "2000, 0, 1" });
                         
 
                                Get the valueproperty. var value = $('#jqxDateTimeInput').jqxDateTimeInput('value');
 | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the width of the jqxDateTimeInput widget.
                             Code example
                                Set the widthproperty. $('#jqxDateTimeInput').jqxDateTimeInput({ width: '250px'});
 
                                Get the widthproperty. var width = $('#jqxDateTimeInput').jqxDateTimeInput('width');
 | 
                
                    |  | 
                
                    | change | Event |  | 
                
                    | 
                            
                                This event is triggered on blur when the value is changed .
                             Code example
                                Bind to the changeevent by type: jqxDateTimeInput. $('#jqxDateTimeInput').on('change', function (event) 
{  
    var jsDate = event.args.date; 
    var type = event.args.type; // keyboard, mouse or null depending on how the date was selected.
}); 
 | 
                
                    | close | Event |  | 
                
                    | 
                            
                                This event is triggered when the popup calendar is closed.
                             Code example
                                Bind to the closeevent by type: jqxDateTimeInput. $('#jqxDateTimeInput').on('close', function (event) { // Some code here. }); 
 | 
                
                    | open | Event |  | 
                
                    | 
                            
                                This event is triggered when the popup calendar is opened.
                             Code example
                                Bind to the openevent by type: jqxDateTimeInput. $('#jqxDateTimeInput').on('open', function (event) { // Some code here. }); 
 | 
                
                    | textchanged | Event |  | 
                
                    | 
                            
                                This event is triggered when the text is changed.
                             Code example
                                Bind to the textchangedevent by type: jqxDateTimeInput. $('#jqxDateTimeInput').on('textchanged', function (event) { // Some code here.}); 
 | 
                
                    | valueChanged | Event |  | 
                
                    | 
                            
                                This event is triggered when the value is changed.
                             Code example
                                Bind to the valueChangedevent by type: jqxDateTimeInput. $('#jqxDateTimeInput').on('valueChanged', function (event) 
{  
    var jsDate = event.args.date; 
}); 
 | 
                
                    |  | 
                
                    | close | Method |  | 
                
                    | 
                            
                                After calling this method, the popup calendar will be hidden.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the closemethod. $('#jqxDateTimeInput').jqxDateTimeInput('close'); 
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroys the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the destroymethod. $('#jqxDateTimeInput').jqxDateTimeInput('destroy'); 
 | 
                
                    | focus | Method |  | 
                
                    | 
                            
                                Focuses the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the focusmethod. $('#jqxDateTimeInput').jqxDateTimeInput('focus'); 
 | 
                
                    | getRange | Method |  | 
                
                    | 
                            
                                Gets the selection range when the selectionMode is set to 'range'. The returned value is an Object with "from" and "to" fields. Each of the fields is a JavaScript Date Object.
                             
                                
                                    
                                        Return Value 
                                Object
                                            | Parameter | Type | Description |  
                                            | date | Date/String |  |   - object.from and object.to are javascript date objects.
                             
                            .
                             Code example
                                Invoke the getRangemethod. 
    var range = $("#jqxDateTimeInput").jqxDateTimeInput('getRange');
    var from = range.from;
    var to = range.to;
                        
 | 
                
                    | getText | Method |  | 
                
                    | 
                            
                                Returns the input field's text.
                             
                                
                                    
                                        Return Value 
                                String
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the getTextmethod. var text= $('#jqxDateTimeInput').jqxDateTimeInput('getText'); 
 | 
                
                    | getDate | Method |  | 
                
                    | 
                            
                                When the getDate method is called, the user gets the current date. The returned value is JavaScript Date Object.
                             
                                
                                    
                                        Return Value 
                                Date
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the getDatemethod. var getDate= $('#jqxDateTimeInput').jqxDateTimeInput('getDate'); 
 | 
                
                    | getMaxDate | Method |  | 
                
                    | 
                            
                                When the setMaxDate method is called, the user gets the maximum navigation date. The returned value is JavaScript Date Object.
                             
                                
                                    
                                        Return Value 
                                Date
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the getMaxDatemethod. var getMaxDate= $('#jqxDateTimeInput').jqxDateTimeInput('getMaxDate'); 
 | 
                
                    | getMinDate | Method |  | 
                
                    | 
                            
                                When the getMinDate method is called, the user gets the minimum navigation date. The returned value is JavaScript Date Object.
                             
                                
                                    
                                        Return Value 
                                Date
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the getMinDatemethod. var minDate = $('#jqxDateTimeInput').jqxDateTimeInput('getMinDate'); 
 | 
                
                    | open | Method |  | 
                
                    | 
                            
                                After calling this method, the popup calendar will be displayed.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the openmethod. $('#jqxDateTimeInput').jqxDateTimeInput('open'); 
 | 
                
                    | setRange | Method |  | 
                
                    | 
                            
                                Sets the selection range when the selectionMode is set to 'range'. The required parameters are JavaScript Date Objects.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | date | Date/String |  |  
                                            | date2 | Date/String |  |  Code example
                                Invoke the setRangemethod. // @param JavaScript Date
 
var date1 = new Date();
date1.setFullYear(2012, 7, 7);
var date2 = new Date();
date2.setFullYear(2012, 7, 15);
$("#jqxDateTimeInput").jqxDateTimeInput('setRange', date1, date2);
                        
 // @param String
 
$("#jqxDateTimeInput").jqxDateTimeInput('setRange', "3/20/2013", |3/25/2013" );
                        
 | 
                
                    | setMinDate | Method |  | 
                
                    | 
                            
                                When the setMinDate method is called, the user sets the minimum date to which it
                            is possible to navigate.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | date | Date/String |  |  Code example
                                Invoke the setMinDatemethod. $('#jqxDateTimeInput ').jqxDateTimeInput('setMinDate', new Date(2008, 0, 1));
                        
 | 
                
                    | setMaxDate | Method |  | 
                
                    | 
                            
                                When the setMaxDate method is called, the user sets the maximum date to which it
                            is possible to navigate.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | date | Date/String |  |  Code example
                                Invoke the setMaxDatemethod. $('#jqxDateTimeInput ').jqxDateTimeInput('setMaxDate', new Date(2013, 0, 1));
                        
 | 
                
                    | setDate | Method |  | 
                
                    | 
                            
                                When the setDate method is called, the user sets the date. The required parameter is a JavaScript Date Object.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | date | Date/String |  |  Code example
                                Invoke the setDatemethod. // @param JavaScript Date
                      
// Sets 1/January/2014
$('#jqxDateTimeInput ').jqxDateTimeInput('setDate', new Date(2014, 0, 1));
 // @param String
                      
// Sets 1/January/2014
$('#jqxDateTimeInput ').jqxDateTimeInput('setDate', "2014, 0, 1");
 | 
                
                    | val | Method |  | 
                
                    | 
                            
                                Gets or sets the jqxDateTimeInput's value.
                             
                                
                                    
                                        Return Value
                                            | Parameter | Type | Description |  
                                            | date | Date/String(optional) |  |  
                                            | date2 | Date/String(optional) | The end of range when the selectionMode is "range" |  Date/String - returns date if the passed parameter is "date"
                             Code examples
                                Invoke the valmethod. 
// Set Date using Javascript Date param. Sets year = 2013, month = april, day = 3.
$('#jqxDateTimeInput').jqxDateTimeInput('val', new Date(2013, 3, 3));
// Set Date using String param.
$('#jqxDateTimeInput').jqxDateTimeInput('val', "2013/3/3");
// Set Date using jQuery's val.
$('#jqxDateTimeInput').val("2013/3/3");
// Set Date using jQuery's val. Param is JavaScript Date.
$('#jqxDateTimeInput').val(new Date(2013, 3, 3));
// Set Null Date.
$('#jqxDateTimeInput').val(null);
// Set Range when the selectionMode is "range".
$('#jqxDateTimeInput').val("2013/3/3", "2013/3/10");
// Set Range using JavaScript Date.
$('#jqxDateTimeInput').val(new Date(2013, 3, 3), new Date(2013, 3, 10));
// Get Date. The returned value is string.
$('#jqxDateTimeInput').jqxDateTimeInput('val');
// Get Date. The returned value is Javascript Date.
$('#jqxDateTimeInput').jqxDateTimeInput('val', 'date');
// Get Date using jQuery's val. The returned value is string.
$('#jqxDateTimeInput').val();
// Get JavaScript Date using jQuery's val. 
$('#jqxDateTimeInput').val('date');
 
 |