Skip to content

Releases: nehakadam/DateTimePicker

Publish new version 0.1.39

06 Apr 08:40
Compare
Choose a tag to compare

Fixes issue - #155 In Google Chrome (73.0.3683.75, 64-Bit): Picker closes immediately after showing

Change in Copyright Text and Repository URLs

19 Feb 09:50
Compare
Choose a tag to compare

Change in Copyright Text and Repository URLs
Repository is moved from CuriousSolutions/DateTimePicker to nehakadam/DateTimePicker.

Added Format as a parameter in callbacks and examples for #122 and #125

05 Nov 17:36
Compare
Choose a tag to compare

Added Format as a parameter in parseDateTimeString and formatDateTimeString callbacks to let it support different formats. Previously, with this function parsing or formatting of only one format was possible. Now based on format different code can be written for parsing or formatting the date.

parseDateTimeString: function(sDateTime, sMode, sFormat, oInputElement) {
}
formatDateTimeString: function(oDate, sMode, sFormat, oInputElement) {
}

Added exmaple in which date format of date string in input field is different from the date format of date string to be displayed on DateTimePicker, as requested in #125

Added exmaple for using different date formats for storing date in the database and displaying on DateTimePicker, as requested in #122

Added support for "yyyy-MM" format

05 Nov 17:01
Compare
Choose a tag to compare

Added support for "yyyy-MM" Date format as per #121.

Added data-parentelement For Initializing Multiple Pickers

02 Oct 13:59
Compare
Choose a tag to compare

Added parentelement data attribute for initializing multiple pickers with different properties on a single page.
This functionality was already their but it had to be included in DateTimePicker plugin initialization code.

Allow Date to be set as min and max values

27 Sep 17:36
Compare
Choose a tag to compare

Set Date as minDate, maxDate, minTime, maxTime, minDateTime and maxDateTime value. Previously, only string value in input DateFormat / TimeFormat / DateTimeFormat could be set as minimum and maximum date.

Removed console messages to avoid warnings

27 Sep 17:29
Compare
Choose a tag to compare

Removed console messages to avoid warnings

Improvement in TouchHold & Mousehold Increment/Decrement Buttons and Added example of DateTimePicker inside jQuery UI Tab

13 Aug 15:03
Compare
Choose a tag to compare

Inline View, Increment/Decrement with Arrow Keys and Mouse, Support for IE8, Bug Fix position issue on iOS

30 Jul 14:54
Compare
Choose a tag to compare
  • DateTimePicker can be added as an inline element by setting isInline: true. Since DateTimePicker is added inline, input element should be explicitly specified with inputElement: <jQuery object of Element>. Check Example Inline View.
  • Input Elements on DateTimePicker can be made read-only with readonlyInputs: true.
  • Header Element in DateTimePicker View can be removed with showHeader: false.
  • Added functionality to increment or decrement values of dates using Up and Down Arrow Keys as well as using Mouse Wheel.
  • Support for IE8 and Bug Fix on iOS(Changes from PR #109)
    • Added Support for IE8
    • Bug Fix for position:fixed issue on iOS (#108 and #106)

Italiano Locale Files and TouchHold Increment/Decrement

02 Jul 05:30
Compare
Choose a tag to compare
  • Added Italiano Locale files.
  • Added functionality to increment or decrement values of dates by holding Increment or Decrement buttons. This will make DateTimePicker more useful on mobile devices.
    Example - Mobile-TouchHold.htm