Releases: nehakadam/DateTimePicker
Publish new version 0.1.39
Change in Copyright Text and Repository URLs
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
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
Added support for "yyyy-MM" Date format as per #121.
Added data-parentelement For Initializing Multiple Pickers
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
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
Removed console messages to avoid warnings
Improvement in TouchHold & Mousehold Increment/Decrement Buttons and Added example of DateTimePicker inside jQuery UI Tab
- Improved functionality to increment or decrement values of dates by holding Increment or Decrement buttons. This will make DateTimePicker more useful on mobile devices.
Example - Events-TouchHold.htm and Events-MouseHold.htm - Added demo for DateTimePicker implementation with jQuery UI Tabs.
Examples - BasicDateTimePicker-jQueryUI.htm and BasicDateTimePicker-jQueryUI-ElementsGroup.htm
Inline View, Increment/Decrement with Arrow Keys and Mouse, Support for IE8, Bug Fix position issue on iOS
- DateTimePicker can be added as an inline element by setting
isInline: true
. Since DateTimePicker is added inline, input element should be explicitly specified withinputElement: <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)
Italiano Locale Files and TouchHold Increment/Decrement
- 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