Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customizable jQuery datetimepicker plugin [closed]

I am finding a date time picker plugin which have feature scrolling left to right or right to left. It should be work on mobile screen also. I am sharing a picture what I want. I found a link which is so nearest from my query but in this plugin time picker is not showing.

Plugin Url http://www.bestjquery.com/?jGUMy1Ky

Suggest any other plugin or customizable plugin.

enter image description here

like image 739
Varsha Khatri Avatar asked Jan 12 '18 06:01

Varsha Khatri


People also ask

Is datetimepicker jQuery?

datetimepicker is a jQuery plugin that popups a simple and clean date & time picker interface when an input field on focus.

How to implement datetimepicker?

The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.


1 Answers

A jQuery/Bootstrap 3 datetime picker plugin rich of features and highly customizable is eonasdan bootstrap-datetimepicker:

  • http://eonasdan.github.io/bootstrap-datetimepicker/

or its fork (and successor) Tempus Dominus available both for Bootstrap 3 and Bootstrap 4:

  • https://tempusdominus.github.io/bootstrap-3/
  • https://tempusdominus.github.io/bootstrap-4/

A jQuery-only plugin with several options is:

  • web site w/demos/docs: https://xdsoft.net/jqplugins/datetimepicker/
  • github repo: https://github.com/xdan/datetimepicker

As suggest already by NoobProgrammer DateBox is a good mobile friendly option:

  • web site w/demos/docs: http://dev.jtsage.com/DateBox/
  • github repo: https://github.com/jtsage/jtsage-datebox

As completely mobile friendly alternative, but with separated date and time pickers is pickadate.js:

  • web site w/demos/docs: http://amsul.ca/pickadate.js/
  • github repo: https://github.com/amsul/pickadate.js

As a guideline to select a JS plugin I suggest, besides to view offered functionalities, to check also:

  • github repo for number of contributions, "freshness" of code (latest commit), number of forks
  • number of posts here on stackoverflow
like image 124
beaver Avatar answered Oct 16 '22 12:10

beaver