Neha Kadam

Results 58 comments of Neha Kadam

Thank you!! We will try to improve DateTimePicker based on your suggestion.

DateTimePicker requires jQuery as a dependency, if jQuery is not included before DateTimePicker, this error may occur. If you are getting this error in any of the examples in demo...

You can set date format as - HTML - ``` ``` OR HTML Code - ``` ``` Javascript Code - ``` $(document).ready(function() { $("#dtBox").DateTimePicker( { dateFormat: "yyyy-MM-dd" }); }); ```

Try following Code - HTML Code - ``` Date : ``` Javascript Code - ``` var inputDateString = "2016-10-22", outputDateString, dDateTime; $(document).ready(function() { $("#dtBox").DateTimePicker( { addEventHandlers: function() { oDTP =...

You can use `parentElement` parameter to achieve this. Add multiple elements to initialize each picker for which you want different object. Please try code below - HTML Code - ```...

Thank you for a good suggestion to solve this issue @gtrbarbarian. Updated your comment to format it. I will make changes in the plugin, add example for this and release...

No there is no single point of change. You will need to make changes in DateTimePicker.css file in order to change the look. You can customize text using plugin settings.

Please try code below - ``` Start DateTime : End DateTime : var thisDate = myFunction(); $("#dtBox").DateTimePicker({ dateTimeFormat: "dd-MM-yyyy hh:mm:ss AA", maxDateTime: moment(thisDate).add(30, 'minutes').format("D-MM-YYYY hh:mm:ss A"), minDateTime: moment(thisDate).format("D-MM-YYYY hh:mm:ss A"),...

Following `dateFormat` values can be sued to display Month and Year. - `dateFormat: "MM yyyy"` - `dateFormat: "MMM yyyy"` - `dateFormat: "MMMM yyyy"`

Please try the code given below - ``` Period Range - SecondField Min = FirstField + 5 minutes, SecondField Max = FirstField DayEnd p { margin-left: 20px; } input {...