vote up 1 vote down star

I have a Datepicker and a Timepicker in 2 separate input fields but I need to combine the 2 fields inputs into one for a database call. Wanted to know if I could only use 1 input field for both controls?

first call the datepicker and the user would click the date wanted and it would enter the value, then the timepicker would popup and append the date the user selected in the first action.

I'm using the jQuery UI Datepicker and Timepickr plug-ins

So I have something like this

<input class="datepicker">2009-06-22</input>
<input class="timepicker">12:00:00</input>

But would like something like this

<input class="datetimepicker">2009-06-22 12:00:00</input>

<script type="text/javascript">
// Date and Time picker same input field
$("#datepicker").datepicker( {
   dateFormat: 'yy-mm-dd',
   onClose: function(dateText, inst) {
      var tempDate = $("#datepicker").val(dateText);
      $("#datepicker").timepickr({
         onClose: function(timeText, inst) {
            var tempTime = $("#datepicker").val(dateText);  
            alert("Temp Time: '" + tempTime.val() + "'");
            $("#datepicker").val(tempDate.val() + ' ' + tempTime.val());
         }  
      });   								
   }
});             
</script>
flag

6 Answers

vote up 2 vote down

Here's an alternative:

http://www.r-ip.ru/dev/datetimepicker/index.html

$('#datetimepicker').datetimepicker({ 
  dateFormat: 'yy-mm-dd',
  timeFormat: ' hh:ii:ss' 
});
link|flag
1  
The Date Time picker on that page has what the author asked for... – Shadi Almosri Jun 22 at 17:34
That wasn't stated. Also, the interface for the time-picker on the provided link is terrible. Took me a few seconds to figure out that clicking a value increments it. Either way, I've removed my down-vote. – Jonathan Sampson Jun 22 at 17:38
1  
I agree it has what I'ved asked for but not with the plug-ins I'm using which I would like to use. The solution you provided is good but I would agree the the time controls are a little confusing. Thanks though – Phill Pafford Jun 22 at 19:28
vote up 1 vote down check

Found this link:

http://milesich.com/timepicker/

Just want I was looking for, thanks all for your input ;)

link|flag
vote up 0 vote down

You can try combining the inputs from both controls into one like

$("#datetime").focus(function() {
	var mydate = $("#date").val();
	var mytime = $("#time").val();
	if(mydate && mytime && !this.value) {
		this.value = mydate + " " + mytime;
	}
});
link|flag
vote up 0 vote down

You could bind an event to the onClose() event of the datepicker. Have it open up your time picker. Let the datepicker write the base value of the input, and have the timepicker append it's value following a space to the same input.

  1. Bind date-picker to input.
  2. Attach method to open timepicker to .onClose() event of date-picker.
  3. Append time-picker value (with a preceding space) to input value.

Updated: The follow is an updated resulting from an updated question.

The documentation gives a brief example on how to bind an event/action to the closing of the datepicker:

$('.selector').datepicker({
   onClose: function(dateText, inst) { ... }
});

In this example, you could use your function following "onClode: " to write the value to the input, and popup the timepicker.

$(".selector").datepicker({
  onClose: function(dateText, inst) {
    $(".selector").val(dateText);
    // Raise Timepickr
  }
});
link|flag
I like the flow of this option but have never binded anything. I have edited my post above to show you the code I'm using. Very basic – Phill Pafford Jun 22 at 17:45
hmm how do I call the timepicker? – Phill Pafford Jun 22 at 18:35
I'm sorry - I don't know. I've never used that particular 3rd party plugin. You would have to consult the documentation for it, or contact the plugin author. In all honesty, it may be easier to seek out a different 3rd party plugin that does both date and time built into one - something like razum.si/jQuery-calendar/TimeCalendar.html or the plugin mentioned in Alexander's response. – Jonathan Sampson Jun 22 at 19:22
You could try to bind that plugin to the $(".selector") after the $(".selector").val(dateText); line, and then invoke the .click() or .focus() method of the $(".selector") immediately afterwards. That may do it. – Jonathan Sampson Jun 22 at 19:25
I have change the code some but still having issues, see new edit – Phill Pafford Jun 22 at 19:56
vote up 0 vote down

I've had need to address this problme myself recently. My solution has been to modify a plugin for jQuery-UI.

I've an example http://puna.net.nz/timepicker.htm'>here.

link|flag
vote up 0 vote down

Ah, sod. I screwed up entering the link there, here it is again...

jQuery Timepicker mod

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.